當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ListPage::readListModeFromRequest方法代碼示例

本文整理匯總了PHP中ListPage::readListModeFromRequest方法的典型用法代碼示例。如果您正苦於以下問題:PHP ListPage::readListModeFromRequest方法的具體用法?PHP ListPage::readListModeFromRequest怎麽用?PHP ListPage::readListModeFromRequest使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ListPage的用法示例。


在下文中一共展示了ListPage::readListModeFromRequest方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: array

$layout->blocks["bare"][] = "mastergrid";
$page_layouts["DimArea_masterlist"] = $layout;
$layout->skinsparams = array();
$layout->skinsparams["empty"] = array("button" => "button1");
$layout->skinsparams["menu"] = array("button" => "button1");
$layout->skinsparams["hmenu"] = array("button" => "button1");
$layout->skinsparams["undermenu"] = array("button" => "button1");
$layout->skinsparams["fields"] = array("button" => "button1");
$layout->skinsparams["form"] = array("button" => "button1");
$layout->skinsparams["1"] = array("button" => "button1");
$layout->skinsparams["2"] = array("button" => "button1");
$layout->skinsparams["3"] = array("button" => "button1");
$options = array();
//array of params for classes
//	Include necessary files in accordance with the page displaying mode
$mode = ListPage::readListModeFromRequest();
if ($mode == LIST_SIMPLE) {
    require_once 'classes/listpage_simple.php';
    require_once "classes/searchpanelsimple.php";
} elseif ($mode == LIST_AJAX) {
    require_once 'classes/listpage_simple.php';
    require_once 'classes/listpage_ajax.php';
    require_once "classes/searchpanelsimple.php";
} elseif ($mode == LIST_LOOKUP) {
    require_once 'classes/listpage_embed.php';
    require_once 'classes/listpage_lookup.php';
    require_once "classes/searchpanellookup.php";
} elseif ($mode == LIST_DETAILS) {
    require_once 'classes/listpage_embed.php';
    require_once 'classes/listpage_dpinline.php';
} elseif ($mode == LIST_DASHDETAILS) {
開發者ID:ryanblanchard,項目名稱:Dashboard,代碼行數:31,代碼來源:Fact_SalesTransaction_list.php

示例2: processListPageSecurity

 public static function processListPageSecurity($table)
 {
     //	user has necessary permissions
     if (Security::checkPagePermissions($table, "S")) {
         return true;
     }
     $mode = ListPage::readListModeFromRequest();
     //	check special permissions like lookup mode
     if ($mode == LIST_LOOKUP && ListPage::checkLookupPermissions($table)) {
         return true;
     }
     //	page can not be displayed. Redirect or return error
     //	return error if the page is requested by AJAX
     if ($mode != LIST_SIMPLE) {
         Security::sendPermissionError();
         return false;
     }
     // The user is logged in but lacks necessary permissions
     // redirect to List page or Menu.
     if (isLogged() && !isLoggedAsGuest()) {
         HeaderRedirect("menu");
         return false;
     }
     //	Not logged in
     // 	redirect to Login
     //	Current URL is already saved in session
     redirectToLogin();
     return false;
 }
開發者ID:sdev1,項目名稱:CloudStockEnquiry,代碼行數:29,代碼來源:listpage.php


注:本文中的ListPage::readListModeFromRequest方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。