当前位置: 首页>>代码示例>>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;未经允许,请勿转载。