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


PHP Component::getPage方法代碼示例

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


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

示例1: __construct

 private function __construct(Component $component)
 {
     $this->component = $component;
     $page = $component->getPage() == null ? "" : get_class($component->getPage());
     $resourceName = self::PROPERTIES_CACHE_NAME . '_' . $page . '_' . $component->getComponentPath();
     if (CacheManager::resourceExists($resourceName, CacheManager::APPLICATION_SCOPE)) {
         $this->properties = CacheManager::loadResource($resourceName, CacheManager::APPLICATION_SCOPE);
     } else {
         $this->properties = $this->getProperties($this->component);
         CacheManager::saveResource($resourceName, $this->properties, CacheManager::APPLICATION_SCOPE);
     }
 }
開發者ID:picon,項目名稱:picon-framework,代碼行數:12,代碼來源:Localizer.php

示例2: renderComponentHeader

 private function renderComponentHeader(Component $component, Response $response, $headerResponse)
 {
     $header = new HeaderContainer(HeaderResolver::HEADER_ID);
     $page = $component->getPage();
     $page->addOrReplace($header);
     PiconApplication::get()->getComponentRenderHeadListener()->onHeadRendering($component, $headerResponse);
     $page->renderHead($headerResponse);
     $component->renderHeadContainer($header, $headerResponse);
     $callback = function (Component &$component) use($headerResponse, $header) {
         $component->renderHeadContainer($header, $headerResponse);
         return Component::VISITOR_CONTINUE_TRAVERSAL;
     };
     if ($component instanceof MarkupContainer) {
         $component->visitChildren(Component::getIdentifier(), $callback);
     }
 }
開發者ID:picon,項目名稱:picon-framework,代碼行數:16,代碼來源:AjaxRequestTarget.php

示例3: c

 public function c($componentId, $action = 'index', $params = null)
 {
     if (is_object($this->_module)) {
         $conf = $this->_module->getConfig('component_' . $componentId, $this->_module->getCurrentAction());
         if (!is_array($conf)) {
             $conf = $this->_module->getConfig('component_' . $componentId);
         }
     } else {
         $conf = null;
     }
     if (is_array($conf)) {
         $module = $conf[0];
         $action = empty($conf[1]) ? 'index' : $conf[1];
     } elseif ($conf == '__none') {
         return;
     } else {
         $module = $componentId;
     }
     $c = new Component($module, $action, $params);
     $c->execute();
     return $this->comment('Start component ' . $module . '/' . $action . ' routed to ' . $c->getPage()->getCurrentModule() . '/' . $c->getPage()->getCurrentAction()) . $c->display() . $this->comment('End component ' . $module . '/' . $action);
 }
開發者ID:demental,項目名稱:m,代碼行數:22,代碼來源:Mtpl.php


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