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


PHP Smarty::getTemplate方法代碼示例

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


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

示例1: get_template

 /**
  * @param null $template
  * @param null $cache_id
  * @param null $compiled_id
  * @param null $parent
  * @return string
  *
  * @throws \SmartyException
  */
 public function get_template($template = null, $cache_id = null, $compiled_id = null, $parent = null)
 {
     $this->init_engine();
     $this->template_engine->setCompileDir($this->compile_dir);
     foreach ($this->template_dirs as $i => $dir) {
         $i == 0 && $this->template_engine->setTemplateDir($dir);
         $i > 0 && $this->template_engine->addTemplateDir($dir);
     }
     $this->load_lang_vars($this->get_lang_file());
     return $this->template_engine->getTemplate($template, $cache_id, $compiled_id, $parent);
 }
開發者ID:one-more,項目名稱:peach_framework,代碼行數:20,代碼來源:baseview.php

示例2: show_error

 public static function show_error($message)
 {
     /**
      * @var $system \System
      */
     $system = Application::get_class(\System::class);
     $smarty = new \Smarty();
     $smarty->setTemplateDir($system->get_path() . DS . 'templates');
     $smarty->setCompileDir($system->get_path() . DS . 'templates_c');
     $error_class = 'error-block';
     $params = ['class' => $error_class, 'message' => $message];
     $smarty->assign($params);
     echo $smarty->getTemplate('message.tpl.html');
 }
開發者ID:one-more,項目名稱:peach_framework,代碼行數:14,代碼來源:exceptionhandler.php

示例3: show_result

 protected function show_result(GetResponse $response)
 {
     /**
      * @var $template Template
      */
     $template = Application::get_class(\Starter::class);
     $smarty = new \Smarty();
     $bundle_file = ROOT_PATH . DS . 'static_builder' . DS . 'bundle.result.json';
     $bundle_result = json_decode(file_get_contents($bundle_file), true);
     $smarty->assign('bundle_result', $bundle_result);
     if (strpos(Request::uri(), 'admin_panel') !== false) {
         $smarty->setTemplateDir($template->get_path() . DS . 'templates' . DS . 'admin_panel');
     } else {
         $smarty->setTemplateDir($template->get_path() . DS . 'templates' . DS . 'site');
     }
     $smarty->setCompileDir($template->get_path() . DS . 'templates_c');
     $smarty->assign($response->blocks);
     $smarty->assign('title', new PageTitle());
     echo $smarty->getTemplate('index' . DS . 'index.tpl.html');
 }
開發者ID:one-more,項目名稱:peach_framework,代碼行數:20,代碼來源:traitstarterrouter.php

示例4: show_result

 private function show_result()
 {
     /**
      * @var $view ExtensionView
      */
     $view = Application::get_class(LeftMenuView::class);
     $this->response->blocks['left'] = $view->render();
     $view = Application::get_class(TopMenuView::class);
     $this->response->blocks['top'] = $view->render();
     $smarty = new \Smarty();
     $bundle_file = ROOT_PATH . DS . 'static_builder' . DS . 'bundle.result.json';
     $bundle_result = json_decode(file_get_contents($bundle_file), true);
     $smarty->assign('bundle_result', $bundle_result);
     $smarty->assign($this->response->blocks);
     /**
      * @var $ext \Tools
      */
     $ext = Application::get_class(\Tools::class);
     $smarty->setTemplateDir($ext->get_path() . DS . 'templates' . DS . 'index');
     $smarty->setCompileDir($ext->get_path() . DS . 'templates_c');
     echo $smarty->getTemplate('index.tpl.html');
 }
開發者ID:one-more,項目名稱:peach_framework,代碼行數:22,代碼來源:toolsrouter.php


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