本文整理汇总了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);
}
}
示例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);
}
}
示例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);
}