<?
	// Load Elgg engine
	require_once(dirname(dirname(dirname(dirname(dirname(__FILE__))))) . "/engine/start.php");

    	# my custom functions, in root of 'custom_index' plugin
    	include_once( $CONFIG->pluginspath . 'custom_index/functions.php');
    	include_once( $CONFIG->pluginspath . 'custom_index/settings.php');

        // define datavis context
	global $datavis;
	$datavis = true;
	set_context('infoviz');

	global $CONFIG;
        if($_GET["p"] === 'r'){	
	   $app = file_get_contents("region_crimes.inc");
        } else {
	   $app = file_get_contents("area_crimes.inc");
        }

	$body = elgg_view_layout("one_column", $app);
	
	// Display page
	page_draw("Візуалізація від ТЕКСТІВ: Динаміка злочинності в областях, 2011-2012 роки", $body);
	
?>
