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


PHP Templates::get_default方法代碼示例

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


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

示例1: __construct

 public function __construct($data = array())
 {
     parent::__construct();
     $this->entityType = 'article';
     if (!empty($data['id'])) {
         $CMS = new CMS();
         $this->id = $data['id'];
         $this->populate_object($CMS->get_entity_data($this));
     }
     $this->populate_object($data);
     if (empty($this->template)) {
         $templates = new Templates();
         $defaultTemplate = $templates->get_default();
         $this->template = $defaultTemplate['path'];
     }
 }
開發者ID:josedesousa-tcc,項目名稱:digital-publishing-tools-for-wordpress,代碼行數:16,代碼來源:dpsfa-article.php

示例2: collect_article_files

 private function collect_article_files($entity)
 {
     $files = array();
     /* HTML OF ARTICLE */
     $html = $this->get_html_content($entity);
     /* VERIFY TEMPLATE */
     if (file_exists($entity->template)) {
         $template = $entity->template;
     } else {
         $templates = new Templates();
         $defaultTemplate = $templates->get_default();
         $template = $defaultTemplate['path'];
     }
     /* COLLECT ADDITIONAL FILES FROM A TEMPLATE (CMS) */
     ob_start();
     include_once $template;
     ob_get_clean();
     $templateFiles = $this->get_files_from_template($entity);
     /* DOWNLOAD COLLECTED FILES FROM TEMPLATE FILES */
     foreach ($templateFiles as $file) {
         if (is_array($file)) {
             foreach ($file as $key => $path) {
                 $files[$key] = $this->save_file(basename($key), $path);
             }
         } else {
             if (is_string($file)) {
                 $files[$this->build_asset_path($file)] = $this->save_file(basename($file), $file);
             }
         }
     }
     /* PARSE HTML AND DOWNLOAD LINKED IMAGES / MEDIA / CSS / JS FILES */
     $collected = $this->get_linked_assets_from_html($html, $entity);
     $files = array_merge($files, $collected["assets"]);
     $files["index.html"] = $this->make_file("index", (string) $collected["html"]);
     /* VERIFY ARTICLE FILES */
     foreach ($files as $key => $file) {
         $size = filesize($file);
         if ($size < 1 || $size === FALSE) {
             unset($files[$key]);
         }
     }
     /* CREATE ARTICLE MANIFEST */
     $files["manifest.xml"] = $this->make_file("manifest", $this->create_article_manifest($files));
     return $files;
 }
開發者ID:jerwarren,項目名稱:digital-publishing-tools-for-wordpress,代碼行數:45,代碼來源:dpsfa-bundlr.php


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