コード例 #1
0
ファイル: XT.php プロジェクト: Twinkling/BanXing
 private static function init_view()
 {
     VIEW::init('Smarty', self::$config['viewconfig']);
 }
コード例 #2
0
ファイル: pc.php プロジェクト: juststart2015/MVC_example
 private static function init_view()
 {
     //Smarty为视图引擎的名称,后面为要用的配置
     //调用VIEW.class.php文件内的VIEW类下的init()方法,
     VIEW::init('Smarty', self::$config['viewconfig']);
 }
コード例 #3
0
ファイル: wzl.class.php プロジェクト: siyizhen/my_cms
 /**
  * 初始化Smarty模板引擎
  * @return [type] [description]
  */
 private static function view_init()
 {
     VIEW::init('Smarty', self::$config['viewtype']);
 }
コード例 #4
0
ファイル: xtzlyp.php プロジェクト: xtzlyp/xtzlyp_blog
 private static function init_view()
 {
     VIEW::init(self::$config['templete'], self::$config['templete_config']);
 }