Exemplo n.º 1
0
# Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# GPL: http://www.gnu.org/licenses/gpl.txt
#
##################################################
define('SCRIPT_EXP_RELATIVE', '');
define('SCRIPT_FILENAME', 'popup.php');
ob_start();
// Initialize the Exponent Framework
require_once 'exponent.php';
// Initialize the Theme Subsystem
if (!defined('SYS_THEME')) {
    require_once BASE . 'subsystems/theme.php';
}
$loc = exponent_core_makeLocation(isset($_GET['module']) ? $_GET['module'] : '', isset($_GET['src']) ? $_GET['src'] : '', isset($_GET['int']) ? $_GET['int'] : '');
$SYS_FLOW_REDIRECTIONPATH = 'popup';
if (exponent_theme_inAction()) {
    exponent_theme_runAction();
} else {
    if (isset($_GET['module']) && isset($_GET['view'])) {
        exponent_flow_set(SYS_FLOW_PUBLIC, SYS_FLOW_SECTIONAL);
        $mod = new $_GET['module']();
        $mod->show($_GET['view'], $loc, isset($_GET['title']) ? $_GET['title'] : '');
    }
}
$str = ob_get_contents();
ob_end_clean();
$template = new standalonetemplate('popup_' . (isset($_GET['template']) ? $_GET['template'] : 'general'));
$template->assign('output', $str);
$template->output();
Exemplo n.º 2
0
function exponent_theme_main()
{
    global $db, $user;
    if ((!defined("SOURCE_SELECTOR") || SOURCE_SELECTOR == 1) && (!defined("CONTENT_SELECTOR") || CONTENT_SELECTOR == 1)) {
        $last_section = exponent_sessions_get("last_section");
        $section = $db->selectObject("section", "id=" . $last_section);
        // View authorization will be taken care of by the runAction and mainContainer functions
        if (exponent_theme_inAction()) {
            exponent_theme_runAction();
        } else {
            if ($section == null) {
                exponent_theme_goDefaultSection();
            } else {
                exponent_theme_mainContainer();
            }
        }
    } else {
        if (isset($_REQUEST['module'])) {
            include_once BASE . "modules/ContainerModule/actions/orphans_content.php";
        } else {
            $i18n = exponent_lang_loadFile('subsystems/theme.php');
            echo $i18n['select_module'];
        }
    }
}