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


PHP WPBakeryVisualComposer::defaultTemplatesDIR方法代碼示例

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


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

示例1: getTemplatePath

 public function getTemplatePath($key)
 {
     $template = isset($this->templates[$key]) ? $this->templates[$key] : false;
     if (!$template) {
         return false;
     }
     // Check template path in shortcode's mapping settings
     if (is_array($template) && isset($template['path']) && !empty($template['path'])) {
         return $template['path'];
     }
     // Check template in theme directory
     $user_template = WPBakeryVisualComposer::getUserTemplate($this->getFileName($key));
     if (is_file($user_template)) {
         return $this->setTemplate($key, $user_template);
     }
     // Check default place
     $default_dir = WPBakeryVisualComposer::defaultTemplatesDIR();
     if (is_file($default_dir . $this->getFilename($key))) {
         return $this->setTemplate($key, $default_dir . $this->getFileName($key));
     }
 }
開發者ID:ConceptHaus,項目名稱:huasca,代碼行數:21,代碼來源:teaser_template.php

示例2: findBlockTemplate

 protected function findBlockTemplate()
 {
     $template_path = $this->block_template_dir_name . '/' . $this->block_template_filename;
     // Check template path in shortcode's mapping settings
     if (!empty($this->settings['html_template']) && is_file($this->settings('html_template') . $template_path)) {
         return $this->settings['html_template'] . $template_path;
     }
     // Check template in theme directory
     $user_template = WPBakeryVisualComposer::getUserTemplate($template_path);
     if (is_file($user_template)) {
         return $user_template;
     }
     // Check default place
     $default_dir = WPBakeryVisualComposer::defaultTemplatesDIR();
     if (is_file($default_dir . $template_path)) {
         return $default_dir . $template_path;
     }
     return $template_path;
 }
開發者ID:ksingh812,項目名稱:thub-old,代碼行數:19,代碼來源:posts_grid.php

示例3: findShortcodeTemplate

 /**
  * Find html template for shortcode output.
  */
 protected function findShortcodeTemplate()
 {
     // Check template path in shortcode's mapping settings
     if (!empty($this->settings['html_template']) && is_file($this->settings('html_template'))) {
         return $this->setTemplate($this->settings['html_template']);
     }
     // Check template in theme directory
     $user_template = WPBakeryVisualComposer::getUserTemplate($this->getFilename() . '.php');
     if (is_file($user_template)) {
         return $this->setTemplate($user_template);
     }
     // Check default place
     $default_dir = WPBakeryVisualComposer::defaultTemplatesDIR();
     if (is_file($default_dir . $this->getFilename() . '.php')) {
         return $this->setTemplate($default_dir . $this->getFilename() . '.php');
     }
 }
開發者ID:ImtiH,項目名稱:BAPWD,代碼行數:20,代碼來源:shortcodes.php

示例4: getPartial

 protected function getPartial($partial)
 {
     // Check template path in shortcode's mapping settings
     if (isset($this->partial_paths[$partial])) {
         return $this->partial_paths[$partial];
     }
     // Check template in theme directory
     $user_template = WPBakeryVisualComposer::getUserTemplate($this->getPartialFilename($partial));
     if (is_file($user_template)) {
         return $this->setPartialTemplate($partial, $user_template);
     }
     // Check default place
     $default_dir = WPBakeryVisualComposer::defaultTemplatesDIR();
     $default_dir . $this->getPartialFilename($partial);
     if (is_file($default_dir . $this->getPartialFilename($partial))) {
         return $this->setPartialTemplate($partial, $default_dir . $this->getPartialFilename($partial));
     }
 }
開發者ID:ksingh812,項目名稱:thub-old,代碼行數:18,代碼來源:posts_grid.php


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