$currentPageData = $pagesHandler->GetPageData($_REQUEST['page']);
if((($currentPageData['title'] == 'Productions') || ($currentPageData['title'] == 'Le Produzioni')) && ($_REQUEST['production'] == null))
$productionContentContainer = "productionCentralItemsGalleryContainer";
else if((($currentPageData['title'] == 'Productions') || ($currentPageData['title'] == 'Le Produzioni')) && ($_REQUEST['production'] > 0))
$productionContentContainer = "productionCentralItemsContainer";
else
$productionContentContainer = "centralItemsContainer";
?>
if(!isset($_REQUEST['page']))
$siteContent = null;
else
$siteContent = $pagesHandler->GetPageData($_REQUEST['page'], $currentLanguage);
if(count($siteContent) > 0 && $siteContent != null)
{
if($siteContent['is_dynamic_page'] != 0)
include($siteContent['content_file']);
else
include(STATIC_PAGES_PATH.$siteContent['content_file']);
$flags = 'none';
}
elseif((count($siteContent) == 0 || $siteContent == null) && $_REQUEST['page'] == 'teatrography')
{
include('teatrography.php');
$flags = 'none';
}
else
{
include(STATIC_PAGES_PATH.'home.php');
$flags = 'block';
}
?>