本文整理汇总了PHP中AdminHelper::getPageTipsString方法的典型用法代码示例。如果您正苦于以下问题:PHP AdminHelper::getPageTipsString方法的具体用法?PHP AdminHelper::getPageTipsString怎么用?PHP AdminHelper::getPageTipsString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AdminHelper
的用法示例。
在下文中一共展示了AdminHelper::getPageTipsString方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: dirname
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';
} elseif ($exploded_base[0] == 'calendar') {