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