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


PHP tpl::parse_plugins方法代碼示例

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


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

示例1: tpl

 static function tpl($group = 'home')
 {
     $tpl = tpl::get_instance();
     //基本配置
     $smarty = config('home', 'smarty');
     // $tpl->error_reporting=$smarty['error'];
     // $tpl->debugging=$smarty['debug'];
     // $tpl->allow_php_templates=$smarty['php'];
     $tpl->template_dir = $smarty['template'];
     $tpl->compile_dir = $smarty['compile'];
     $tpl->config_dir = $smarty['config'];
     $tpl->caching = $smarty['caching'];
     $tpl->cache_dir = $smarty['root'];
     $tpl->cache_lifetime = $smarty['time'];
     $tpl->left_delimiter = '{';
     $tpl->right_delimiter = '}';
     //網站元信息
     $meta = config('meta', 'site');
     $tpl->assign('meta', $meta);
     $tpl->assign('url', dc_url);
     //項目域名
     //設置目錄常量
     $dir_data = self::set_url_dir();
     $tpl->assign('dir', $dir_data);
     //會員session
     if ($group == 'home') {
         $user_info = session::get('user');
         $tpl->assign('user', $user_info);
     }
     //管理員session
     if ($group == 'admin') {
         $admin_info = session::get('admin');
         $tpl->assign('admin', $admin_info);
     }
     if (defined('dc_group')) {
         $group_info['url'] = dc_url . dc_group . '/';
         $group_info['script'] = dc_url_view . dc_group . '/script/';
         $group_info['style'] = dc_url_view . dc_group . '/style/';
         $group_info['image'] = dc_url_view . dc_group . '/image/';
         $tpl->assign('group', $group_info);
     }
     //注冊smarty組件
     $class_arr = config('plugin');
     tpl::parse_plugins($class_arr, $tpl);
     return $tpl;
 }
開發者ID:art-youth,項目名稱:framework,代碼行數:46,代碼來源:s_system.php


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