Exemple #1
0
 *
 * On Debian GNU/Linux systems, the complete text of the GNU General
 * Public License can be found in `/usr/share/common-licenses/GPL-2".
 *
 * Otherwise you can read it here: http://www.gnu.org/licenses/gpl-2.0.txt
 *
 */
require_once 'av_init.php';
/*************************
 ****** GET PARAMS  ******
 *************************/
$action_type = GET('action_type');
$action_params = GET('action_params') != '' ? GET('action_params') : array();
/********************************
 ****** CHECK USER SESSION ******
 ********************************/
// Exception: User is not logged yet
if ($action_type != 'EXT_TRACK_USAGE_INFORMATION') {
    Session::useractive();
}
/***********************
 ****** GET URL ********
 ***********************/
$db = new Ossim_db();
$conn = $db->connect();
$url = Av_routing::route($conn, $action_type, $action_params);
$db->close();
/***********************
 ****** GO TO URL ******
 ***********************/
header('Location: ' . $url);