Exemplo n.º 1
0
    $current_settings = $cash_admin->getUserSettings();
    if (isset($current_settings['banners'][BASE_PAGENAME])) {
        $current_settings['banners'][BASE_PAGENAME] = false;
        $cash_admin->setUserSettings($current_settings);
    }
}
// include Mustache because you know it's time for that
include_once dirname(CASH_PLATFORM_PATH) . '/lib/mustache.php/Mustache.php';
$cash_admin->mustache_groomer = new Mustache();
// finally, output the template and page-specific markup (checking for current login)
if ($admin_primary_cash_request->sessionGet('cash_actual_user')) {
    // start buffering output
    ob_start();
    // set basic data for the template
    $cash_admin->page_data['user_email'] = $admin_primary_cash_request->sessionGet('cash_effective_user_email');
    $cash_admin->page_data['ui_title'] = AdminHelper::getPageTitle();
    $cash_admin->page_data['ui_page_tip'] = AdminHelper::getPageTipsString();
    $cash_admin->page_data['section_menu'] = AdminHelper::buildSectionNav();
    // set empty uid/code, then set if found
    $cash_admin->page_data['status_code'] = isset($_SESSION['cash_last_response']) ? $_SESSION['cash_last_response']['status_code'] : '';
    $cash_admin->page_data['status_uid'] = isset($_SESSION['cash_last_response']) ? $_SESSION['cash_last_response']['status_uid'] : '';
    // figure out the section color and current section name:
    $cash_admin->page_data['specialcolor'] = '';
    $exploded_base = explode('_', BASE_PAGENAME);
    $cash_admin->page_data['section_name'] = $exploded_base[0];
    if ($exploded_base[0] == 'assets') {
        $cash_admin->page_data['specialcolor'] = ' usecolor1';
    } elseif ($exploded_base[0] == 'people') {
        $cash_admin->page_data['specialcolor'] = ' usecolor2';
    } elseif ($exploded_base[0] == 'commerce') {
        $cash_admin->page_data['specialcolor'] = ' usecolor3';