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


PHP sp_add_template_file_suffix函數代碼示例

本文整理匯總了PHP中sp_add_template_file_suffix函數的典型用法代碼示例。如果您正苦於以下問題:PHP sp_add_template_file_suffix函數的具體用法?PHP sp_add_template_file_suffix怎麽用?PHP sp_add_template_file_suffix使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


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

示例1: parseTemplate

 /**
  * 自動定位模板文件
  * @access protected
  * @param string $template 模板文件規則
  * @return string
  */
 public function parseTemplate($template = '')
 {
     $plugin = $this->name;
     $plugin_config = $this->config;
     $theme = $plugin_config['theme'];
     $depr = "/";
     if (empty($theme)) {
         $theme = "";
     } else {
         $theme = $depr . $theme;
     }
     $template = str_replace(':', $depr, $template);
     // 分析模板文件規則
     if ('' == $template) {
         // 如果模板文件名為空 按照默認規則定位
         $template = "/" . PLUGIN_CONTROLLER_NAME . $depr . PLUGIN_ACTION_NAME;
     } elseif (false === strpos($template, '/')) {
         $template = "/" . PLUGIN_CONTROLLER_NAME . $depr . $template;
     }
     $v_layer = C("DEFAULT_V_LAYER");
     $file = sp_add_template_file_suffix("./plugins/{$plugin}/{$v_layer}" . $theme . $template);
     if (!file_exists_case($file)) {
         E(L('_TEMPLATE_NOT_EXIST_') . ':' . $file);
     }
     return $file;
 }
開發者ID:crab890715,項目名稱:GoOut-Panel,代碼行數:32,代碼來源:PluginController.class.php

示例2: _admintpl

 /**
  * 模板包含標簽 
  * 格式
  * <admintpl file="APP/模塊/模板"/>
  * @staticvar array $_admintemplateParseCache
  * @param type $attr 屬性字符串
  * @param type $content 標簽內容
  * @return array 
  */
 public function _admintpl($tag, $content)
 {
     $file = $tag['file'];
     $counts = count($file);
     if ($counts < 3) {
         $file_path = "Admin" . "/" . $tag['file'];
     } else {
         $file_path = $file[0] . "/" . "Tpl" . "/" . $file[1] . "/" . $file[2];
     }
     //模板路徑
     $TemplatePath = sp_add_template_file_suffix(C("SP_ADMIN_TMPL_PATH") . C("SP_ADMIN_DEFAULT_THEME") . "/" . $file_path);
     //判斷模板是否存在
     if (!file_exists_case($TemplatePath)) {
         return false;
     }
     //讀取內容
     $tmplContent = file_get_contents($TemplatePath);
     //解析模板內容
     $parseStr = $this->tpl->parse($tmplContent);
     return $parseStr;
 }
開發者ID:crab890715,項目名稱:GoOut-Panel,代碼行數:30,代碼來源:TagLibSpadmin.class.php

示例3: _tc_include

 /**
  * 模板包含標簽 
  * 格式
  * <tc_include file=""/>
  * @staticvar array $_tc_include_templateParseCache
  * @param type $tag 屬性數據
  * @param type $content 標簽內容
  * @return array 
  */
 public function _tc_include($tag, $content)
 {
     static $_tc_include_templateParseCache = array();
     $file = str_replace(":", "/", $tag['file']);
     $cacheIterateId = md5($file . $content);
     if (isset($_tc_include_templateParseCache[$cacheIterateId])) {
         return $_tc_include_templateParseCache[$cacheIterateId];
     }
     //模板路徑
     $TemplatePath = sp_add_template_file_suffix(C("SP_TMPL_PATH") . C('SP_DEFAULT_THEME') . "/" . $file);
     //判斷模板是否存在
     if (!file_exists_case($TemplatePath)) {
         return false;
     }
     //讀取內容
     $tmplContent = file_get_contents($TemplatePath);
     //解析模板內容
     $parseStr = $this->tpl->parse($tmplContent);
     $_tc_include_templateParseCache[$cacheIterateId] = $parseStr;
     return $_tc_include_templateParseCache[$cacheIterateId];
 }
開發者ID:crab890715,項目名稱:GoOut-Panel,代碼行數:30,代碼來源:TagLibHome.class.php

示例4: parseTemplate

 /**
  * 自動定位模板文件
  * @access protected
  * @param string $template 模板文件規則
  * @return string
  */
 public function parseTemplate($template = '')
 {
     // 獲取當前主題名稱
     $theme = C('SP_DEFAULT_THEME');
     if (C('TMPL_DETECT_THEME')) {
         // 自動偵測模板主題
         $t = C('VAR_TEMPLATE');
         if (isset($_GET[$t])) {
             $theme = $_GET[$t];
         } elseif (cookie('think_template')) {
             $theme = cookie('think_template');
         }
         if (!file_exists($tmpl_path . "/" . $theme)) {
             $theme = C('SP_DEFAULT_THEME');
         }
         cookie('think_template', $theme, 864000);
     }
     $depr = C('TMPL_FILE_DEPR');
     $template = str_replace(':', $depr, $template);
     // 獲取當前模版分組
     $group = "Comment";
     // 獲取當前主題的模版路徑
     if (1 == C('APP_GROUP_MODE')) {
         // 獨立分組模式
         define('THEME_PATH', $tmpl_path . $theme . "/");
         define('APP_TMPL_PATH', __ROOT__ . '/' . basename($tmpl_path) . '/' . $theme . "/");
     }
     // 分析模板文件規則
     if ('' == $template) {
         // 如果模板文件名為空 按照默認規則定位
         $template = MODULE_NAME . $depr . ACTION_NAME;
     } elseif (false === strpos($template, '/')) {
         $template = MODULE_NAME . $depr . $template;
     }
     $templateFile = sp_add_template_file_suffix(THEME_PATH . $group . $template);
     if (!file_exists_case($templateFile)) {
         throw_exception(L('_TEMPLATE_NOT_EXIST_') . '[' . $templateFile . ']');
     }
     return $templateFile;
 }
開發者ID:Njupt-Sast-Network,項目名稱:UMR,代碼行數:46,代碼來源:WidgetController.class.php

示例5: parseTemplate

 /**
  * 自動定位模板文件
  * @access protected
  * @param string $template 模板文件規則
  * @return string
  */
 public function parseTemplate($template = '')
 {
     $tmpl_path = C("SP_ADMIN_TMPL_PATH");
     define("SP_TMPL_PATH", $tmpl_path);
     // 獲取當前主題名稱
     $theme = C('SP_ADMIN_DEFAULT_THEME');
     if (is_file($template)) {
         // 獲取當前主題的模版路徑
         define('THEME_PATH', $tmpl_path . $theme . "/");
         return $template;
     }
     $depr = C('TMPL_FILE_DEPR');
     $template = str_replace(':', $depr, $template);
     // 獲取當前模塊
     $module = MODULE_NAME . "/";
     if (strpos($template, '@')) {
         // 跨模塊調用模版文件
         list($module, $template) = explode('@', $template);
     }
     // 獲取當前主題的模版路徑
     define('THEME_PATH', $tmpl_path . $theme . "/");
     // 分析模板文件規則
     if ('' == $template) {
         // 如果模板文件名為空 按照默認規則定位
         $template = CONTROLLER_NAME . $depr . ACTION_NAME;
     } elseif (false === strpos($template, '/')) {
         $template = CONTROLLER_NAME . $depr . $template;
     }
     C("TMPL_PARSE_STRING.__TMPL__", __ROOT__ . "/" . THEME_PATH);
     C('SP_VIEW_PATH', $tmpl_path);
     C('DEFAULT_THEME', $theme);
     define("SP_CURRENT_THEME", $theme);
     $file = sp_add_template_file_suffix(THEME_PATH . $module . $template);
     $file = str_replace("//", '/', $file);
     if (!file_exists_case($file)) {
         E(L('_TEMPLATE_NOT_EXIST_') . ':' . $file);
     }
     return $file;
 }
開發者ID:feng8605765,項目名稱:xmmusic,代碼行數:45,代碼來源:AdminbaseController.class.php

示例6: parseTcTemplateName

 /**
  * CMF 分析加載的模板文件並讀取內容 支持多個模板文件讀取
  * @access private
  * @param string $tmplPublicName  模板文件名
  * @return string
  */
 private function parseTcTemplateName($templateName)
 {
     if (substr($templateName, 0, 1) == '$') {
         //支持加載變量文件名
         $templateName = $this->get(substr($templateName, 1));
     }
     $array = explode(',', $templateName);
     $parseStr = '';
     foreach ($array as $templateName) {
         if (empty($templateName)) {
             continue;
         }
         if (false === file_exists_case($templateName)) {
             $templateName = str_replace(':', "/", $templateName);
             defined("SP_TMPL_PATH") ? SP_TMPL_PATH : define("SP_TMPL_PATH", "tpl/");
             $templateName = sp_add_template_file_suffix(SP_TMPL_PATH . SP_CURRENT_THEME . "/" . $templateName);
             $templateName = str_replace("//", "/", $templateName);
         }
         // 獲取模板文件內容
         $parseStr .= file_get_contents($templateName);
     }
     return $parseStr;
 }
開發者ID:crab890715,項目名稱:GoOut-Panel,代碼行數:29,代碼來源:Template.class.php

示例7: sp_template_file_exists

/**
 * 判斷模板文件是否存在,區分大小寫
 * @param string $file 模板文件路徑,相對於當前模板根目錄,不帶模板後綴名
 */
function sp_template_file_exists($file)
{
    $theme = sp_get_current_theme();
    $filepath = C("SP_TMPL_PATH") . $theme . "/" . $file;
    $tplpath = sp_add_template_file_suffix($filepath);
    if (file_exists_case($tplpath)) {
        return true;
    } else {
        return false;
    }
}
開發者ID:xchz,項目名稱:MovieCMF,代碼行數:15,代碼來源:function.php

示例8: set_action_success_error_tpl

 /**
  * 設置錯誤,成功跳轉界麵
  */
 private function set_action_success_error_tpl()
 {
     $theme = C('SP_DEFAULT_THEME');
     if (C('TMPL_DETECT_THEME')) {
         // 自動偵測模板主題
         if (cookie('think_template')) {
             $theme = cookie('think_template');
         }
     }
     //by ayumi手機提示模板
     $tpl_path = '';
     if (C('MOBILE_TPL_ENABLED')) {
         //開啟手機模板支持
         if (sp_is_mobile()) {
             if (file_exists(C("SP_TMPL_PATH") . "/" . $theme . "_mobile")) {
                 $theme = $theme . "_mobile";
                 $tpl_path = C("SP_TMPL_PATH") . $theme . "/";
             }
         }
     } else {
         $tpl_path = C("SP_TMPL_PATH") . $theme . "/";
     }
     //by ayumi手機提示模板
     $defaultjump = THINK_PATH . 'Tpl/dispatch_jump.tpl';
     $action_success = sp_add_template_file_suffix($tpl_path . C("SP_TMPL_ACTION_SUCCESS"));
     $action_error = sp_add_template_file_suffix($tpl_path . C("SP_TMPL_ACTION_ERROR"));
     if (file_exists_case($action_success)) {
         C("TMPL_ACTION_SUCCESS", $action_success);
     } else {
         C("TMPL_ACTION_SUCCESS", $defaultjump);
     }
     if (file_exists_case($action_error)) {
         C("TMPL_ACTION_ERROR", $action_error);
     } else {
         C("TMPL_ACTION_ERROR", $defaultjump);
     }
 }
開發者ID:feng8605765,項目名稱:xmmusic,代碼行數:40,代碼來源:HomebaseController.class.php

示例9: fetch

 protected final function fetch($templateFile = 'widget')
 {
     if (!is_file($templateFile)) {
         $config = $this->getConfig();
         $theme = $config['theme'];
         $depr = "/";
         $theme = empty($theme) ? "" : $theme . $depr;
         $templateFile = sp_add_template_file_suffix("./" . $this->tmpl_root . $templateFile);
         if (!file_exists_case($templateFile)) {
             throw new \Exception("模板不存在:{$templateFile}");
         }
     }
     return $this->view->fetch($templateFile);
 }
開發者ID:feng8605765,項目名稱:xmmusic,代碼行數:14,代碼來源:Plugin.class.php

示例10: set_action_success_error_tpl

 private function set_action_success_error_tpl()
 {
     $theme = C('SP_DEFAULT_THEME');
     if (C('TMPL_DETECT_THEME')) {
         // 自動偵測模板主題
         if (cookie('think_template')) {
             $theme = cookie('think_template');
         }
     }
     $tpl_path = C("SP_TMPL_PATH") . $theme . "/";
     $defaultjump = THINK_PATH . 'Tpl/dispatch_jump.tpl';
     $action_success = sp_add_template_file_suffix($tpl_path . C("SP_TMPL_ACTION_SUCCESS"));
     $action_error = sp_add_template_file_suffix($tpl_path . C("SP_TMPL_ACTION_ERROR"));
     if (file_exists_case($action_success)) {
         C("TMPL_ACTION_SUCCESS", $action_success);
     } else {
         C("TMPL_ACTION_SUCCESS", $defaultjump);
     }
     if (file_exists_case($action_error)) {
         C("TMPL_ACTION_ERROR", $action_error);
     } else {
         C("TMPL_ACTION_ERROR", $defaultjump);
     }
 }
開發者ID:xiaoxianlink,項目名稱:ziniu,代碼行數:24,代碼來源:HomeBaseController.class.php


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