<?php
/**
* @version 1.0.0
* @category Anahita Social Engineâ¢
* @copyright Copyright (C) 2008 - 2010 rmdStudio Inc. and Peerglobe Technology Inc. All rights reserved.
* @license GNU GPLv2 <http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>
* @link http://www.anahitapolis.com
*/
function SocialengineBuildRoute( &$query ) {
$segments = array();
if ( isset($query['view']) ) {
$segments[] = $query['view'];
unset($query['view']);
}
if ( isset($query['id']) ) {
$segments[] = $query['id'];
unset($query['id']);
}
return $segments;
}
function SocialengineParseRoute( $segments ) {
$vars = array();
$vars['view'] = array_shift($segments);
if ( count($segments) )
$vars['id'] = array_shift($segments);
return $vars;
}