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


PHP ctools_export_ui::list_page方法代碼示例

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


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

示例1: array

 function list_page($js, $input)
 {
     if ($substitute = $this->entity_handler->get_substitute($this->entity_view_mode, $this->entity_bundle)) {
         $url = $this->plugin['menu']['menu prefix'] . '/' . $substitute;
         drupal_set_message(t('This display is managed by the !view_mode display.', array('!view_mode' => l($substitute, $url))), 'status', FALSE);
         return '';
     }
     drupal_set_title($this->entity_handler->get_bundle_title($this->entity_bundle));
     return parent::list_page($js, $input);
 }
開發者ID:redponey,項目名稱:openatrium-7.x-2.51,代碼行數:10,代碼來源:panelizer_defaults_ui.class.php

示例2:

 function list_page($js, $input)
 {
     // wrap output in a div for CSS
     $output = parent::list_page($js, $input);
     if (is_string($output)) {
         $output = '<div id="views-ui-list-page">' . $output . '</div>';
         return $output;
     }
 }
開發者ID:e-gob,項目名稱:GuiaDigital,代碼行數:9,代碼來源:views_ui.class.php

示例3: unset

 function list_page($js, $input)
 {
     // Remove filters values from session if filters are hidden.
     if (!variable_get('views_ui_show_listing_filters', FALSE) && isset($_SESSION['ctools_export_ui'][$this->plugin['name']])) {
         unset($_SESSION['ctools_export_ui'][$this->plugin['name']]);
     }
     // wrap output in a div for CSS
     $output = parent::list_page($js, $input);
     if (is_string($output)) {
         $output = '<div id="views-ui-list-page">' . $output . '</div>';
         return $output;
     }
 }
開發者ID:michael-wojcik,項目名稱:open_eggheads,代碼行數:13,代碼來源:views_ui.class.php

示例4:

 function list_page($js, $input)
 {
     drupal_set_title($this->entity_handler->get_bundle_title($this->entity_bundle));
     return parent::list_page($js, $input);
 }
開發者ID:rexxllabore,項目名稱:d7-commons-sanbox,代碼行數:5,代碼來源:panelizer_defaults_ui.class.php

示例5:

 /**
  * Master entry point for handling a list.
  */
 function list_page($js, $input)
 {
     drupal_add_css(drupal_get_path('module', 'ms_products') . '/css/ms_products.plans_ui.css');
     return parent::list_page($js, $input);
 }
開發者ID:KamesCG,項目名稱:MoneySuite,代碼行數:8,代碼來源:ms_products_export_ui.class.php


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