$mainframe = JFactory::getApplication();
$id = $this->params->get('the_calendar_id');
$container = "cdcmv" . $id;
$language = $mainframe->getCfg('language');
$style = $this->params->get('cssStyle');
$views = $this->params->get('views');
$buttons = $this->params->get('buttons');
$edition = $this->params->get('edition');
$sample = $this->params->get('sample');
$otherparamsvalue = $this->params->get('otherparams');
$palette = $this->params->get('palette');
$viewdefault = $this->params->get('viewdefault');
$numberOfMonths = $this->params->get('numberOfMonths');
$start_weekday = $this->params->get("start_weekday");
$matches = array();
$msg = print_scripts($id, $container, $language, $style, $views, $buttons, $edition, $sample, $otherparamsvalue, $palette, $viewdefault, $numberOfMonths, $start_weekday, false, $matches);
if ($this->params->def('show_page_heading', 1)) {
    ?>
<h1>
	<?php 
    echo $this->escape($this->params->get('page_heading'));
    ?>
</h1>
<?php 
}
if ($this->params->get('show_page_title', 1)) {
    ?>
<div class="componentheading<?php 
    echo $this->escape($this->params->get('pageclass_sfx'));
    ?>
">
Ejemplo n.º 2
0
    echo "PHP 5.5.0 or later is required. Please upgrade your PHP installation.";
    die;
}
/* We’re live! */
require_once __DIR__ . DIRECTORY_SEPARATOR . 'bones.php';
require_once DIR_PHP . 'pagesetup.php';
if ($_SERVER['REQUEST_METHOD'] == 'GET') {
    if (isset($_GET['nav'])) {
        $_SESSION['nav'] = $_GET['nav'];
        include DIR_NAV . DIRECTORY_SEPARATOR . 'nav.php';
    }
}
ob_start();
echo "<!DOCTYPE html>";
echo "<html lang=\"en\">";
print_head();
echo "<body>";
print_noscript();
echo "<div class=\"oldie-display-none nojs-display-none\">";
print_navbar();
if (Config::read('var.showsession')) {
    print_session();
    unset($_SESSION['dev']);
}
print_container();
print_footer();
echo "</div>";
print_scripts();
echo "</body>";
echo "</html>";
ob_end_flush();