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


PHP ContentHelper::getContent方法代碼示例

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


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

示例1: doBuild

 protected function doBuild(\PageContext $ctxt, \PageBuilderContext $builderCtxt, \RequestArrayAdapter $requestParams, \ArrayAdapter $buildParams)
 {
     //1. ЗАГОЛОВОК
     $builderCtxt->setTitle($this->authed ? 'Админка | ' . $this->adminPage->title() : 'xxx');
     //2. JAVASCRIPT
     $builderCtxt->setJsParams($this->authed ? $this->adminPage->getJsParams() : null);
     //3. SMARTY RESOURCES
     if ($this->authed) {
         $builderCtxt->setSmartyParams4Resources($this->adminPage->getSmartyParams4Resources());
         $builderCtxt->setSmartyParam4Resources('IDENT', $this->adminPage->getPageIdent());
         $builderCtxt->setSmartyParam4Resources('TIMELINE_ENABE', true);
     }
     $smartyParams['authed'] = $this->authed;
     if (!$this->authed) {
         return $smartyParams;
     }
     //Запустим неограниченный по времени режим - мало ли, что мы там будем делать:)
     PsUtil::startUnlimitedMode();
     //Получаем содержимое админской страницы
     $content = ContentHelper::getContent($this->adminPage);
     //Добавляем к ней ресурсы
     $content = APagesResources::inst()->getResourcesLinks($this->adminPage->getPageIdent(), $content);
     $smartyParams['page'] = $this->adminPage;
     $smartyParams['content'] = $content;
     $smartyParams['pagesLayout'] = AdminPagesManager::getInstance()->getLayout();
     return $smartyParams;
 }
開發者ID:ilivanoff,項目名稱:www,代碼行數:27,代碼來源:admin.php

示例2: doBuild

 protected function doBuild(PageContext $ctxt, PageBuilderContext $builderCtxt, RequestArrayAdapter $requestParams, ArrayAdapter $buildParams)
 {
     //1. ЗАГОЛОВОК
     $builderCtxt->setTitle($this->basicPage->getTitle());
     //2. JAVASCRIPT
     $jsParams['postId'] = $ctxt->getPostId();
     $jsParams['rubricId'] = $ctxt->getRubricId();
     $jsParams['postType'] = $ctxt->getPostType();
     $jsParams['isPostsListPage'] = $ctxt->isPostsListPage();
     $jsParams['isRubricPage'] = $ctxt->isRubricPage();
     $jsParams['isPostPage'] = $ctxt->isPostPage();
     //Разборы, пройденные пользователем
     $passed = TrainManager::inst()->getUserPassedLessons();
     $jsParams['passedLessons'] = empty($passed) ? null : $passed;
     //Структура проекта
     $jsParams['structure'] = NavigationManager::inst()->getStructure();
     $builderCtxt->setJsParams($jsParams);
     //Параметры, зависимые от страницы
     $builderCtxt->setJsParams($this->basicPage->getJsParams());
     //3. SMARTY RESOURCES
     $builderCtxt->setSmartyParams4Resources($this->basicPage->getSmartyParams4Resources());
     //4. GET SMARTY PARAMS FOR TPL
     $smartyParams['host'] = ServerArrayAdapter::HTTP_HOST();
     $smartyParams['content'] = BasicPagesManager::inst()->getResourcesLinks($this->basicPage->getIdent(), ContentHelper::getContent($this->basicPage));
     return $smartyParams;
 }
開發者ID:ilivanoff,項目名稱:ps-sdk-dev,代碼行數:26,代碼來源:basic.php

示例3: getInfoTplCtt

 /**
  * Фетчинг информационного шаблона без его кеширования
  */
 public function getInfoTplCtt($ident, $tpl, array $smartyParams = array())
 {
     $this->assertHasAccess($ident);
     $tpl = $tpl instanceof DirItem ? $tpl : $this->getInfoDi($ident, $tpl);
     FoldedInfoTplContext::getInstance()->setContextWithFoldedEntity($this->getFoldedEntity($ident, true));
     $content = trim(ContentHelper::getContent(PSSmarty::template($tpl, $smartyParams)));
     FoldedInfoTplContext::getInstance()->dropContext();
     return $content;
 }
開發者ID:ilivanoff,項目名稱:www,代碼行數:12,代碼來源:FoldedResources.php

示例4: getHtml

 public function getHtml()
 {
     return ContentHelper::getContent(PSSmarty::template($this->di));
 }
開發者ID:ilivanoff,項目名稱:www,代碼行數:4,代碼來源:ToDoFile.php

示例5: getPopupPageContent

 /**
  * Метод фактически строит страницу.
  * Нам нужно выполнить множество различных действий, поэтому перенесём все их сюда.
  * К моменту выполнения у страницы уже вызван метод doProcess
  */
 public function getPopupPageContent(BasePopupPage $page)
 {
     return $this->getResourcesLinks($page->getIdent(), ContentHelper::getContent($page));
 }
開發者ID:ilivanoff,項目名稱:www,代碼行數:9,代碼來源:PopupPagesManager.php


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