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


PHP gpOutput::out_started方法代碼示例

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


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

示例1: CallOutput

 static function CallOutput($info, $container_id)
 {
     global $GP_ARRANGE, $page, $langmessage, $GP_MENU_LINKS, $GP_MENU_CLASS, $GP_MENU_CLASSES, $gp_current_container;
     $gp_current_container = $container_id;
     self::$out_started = true;
     self::$edit_area_id = '';
     if (isset($info['disabled'])) {
         return;
     }
     //gpOutCmd identifies the output function used, there can only be one
     if (!isset($info['gpOutCmd'])) {
         trigger_error('gpOutCmd not set for $info in CallOutput()');
         return;
     }
     $param = $container_id . '|' . $info['gpOutCmd'];
     $class = 'gpArea_' . str_replace(array(':', ','), array('_', ''), trim($info['gpOutCmd'], ':'));
     $permission = gpOutput::ShowEditLink('Admin_Theme_Content');
     ob_start();
     //for theme content arrangement
     if ($GP_ARRANGE && $permission && isset($GLOBALS['GP_ARRANGE_CONTENT'])) {
         $empty_container = empty($info['gpOutCmd']);
         //empty containers can't be removed and don't have labels
         $class .= ' gp_output_area';
         echo '<div class="gp_inner_links nodisplay">';
         echo common::Link('Admin_Theme_Content/' . $page->gpLayout, $param, 'cmd=drag_area&dragging=' . urlencode($param) . '&to=%s', array('data-cmd' => 'creq', 'class' => 'dragdroplink nodisplay'));
         //drag-drop link
         if (!$empty_container) {
             echo '<div class="output_area_label">';
             echo ' ' . gpOutput::GpOutLabel($info['gpOutCmd']);
             echo '</div>';
         }
         echo '<div class="output_area_link">';
         if (!$empty_container) {
             echo ' ' . common::Link('Admin_Theme_Content/' . $page->gpLayout, $langmessage['remove'], 'cmd=rm_area&param=' . $param, array('data-cmd' => 'creq'));
         }
         echo ' ' . common::Link('Admin_Theme_Content/' . $page->gpLayout, $langmessage['insert'], 'cmd=insert&param=' . $param, array('data-cmd' => 'gpabox'));
         echo '</div></div>';
     }
     //editable links only .. other editable_areas are handled by their output functions
     if ($permission) {
         if (isset($info['link'])) {
             $label = $langmessage[$info['link']];
             $edit_link = gpOutput::EditAreaLink($edit_index, 'Admin_Theme_Content', $langmessage['edit'], 'cmd=editlinks&layout=' . urlencode($page->gpLayout) . '&handle=' . $param, ' data-cmd="gpabox" title="' . $label . '" ');
             echo '<span class="nodisplay" id="ExtraEditLnks' . $edit_index . '">';
             echo $edit_link;
             echo common::Link('Admin_Menu', $langmessage['file_manager'], '', ' class="nodisplay"');
             echo '</span>';
             self::$edit_area_id = 'ExtraEditArea' . $edit_index;
         } elseif (isset($info['key']) && $info['key'] == 'CustomMenu') {
             $edit_link = gpOutput::EditAreaLink($edit_index, 'Admin_Theme_Content', $langmessage['edit'], 'cmd=editcustom&layout=' . urlencode($page->gpLayout) . '&handle=' . $param, ' data-cmd="gpabox" title="' . $langmessage['Links'] . '" ');
             echo '<span class="nodisplay" id="ExtraEditLnks' . $edit_index . '">';
             echo $edit_link;
             echo common::Link('Admin_Menu', $langmessage['file_manager'], '', ' class="nodisplay"');
             echo '</span>';
             self::$edit_area_id = 'ExtraEditArea' . $edit_index;
         }
     }
     gpOutput::$editlinks .= ob_get_clean();
     echo '<div class="' . $class . ' GPAREA">';
     gpOutput::ExecArea($info);
     echo '</div>';
     $GP_ARRANGE = true;
     $gp_current_container = false;
 }
開發者ID:Bomberus,項目名稱:gpEasy-CMS,代碼行數:64,代碼來源:gpOutput.php


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