mirror of
https://e.coding.net/circlecloud/MinecraftAccount.git
synced 2025-11-25 21:36:08 +00:00
28
ThinkPHP/Library/Think/Template/Driver/Mobile.class.php
Normal file
28
ThinkPHP/Library/Think/Template/Driver/Mobile.class.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
// +----------------------------------------------------------------------
|
||||
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
|
||||
// +----------------------------------------------------------------------
|
||||
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
|
||||
// +----------------------------------------------------------------------
|
||||
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
|
||||
// +----------------------------------------------------------------------
|
||||
// | Author: luofei614<weibo.com/luofei614>
|
||||
// +----------------------------------------------------------------------
|
||||
namespace Think\Template\Driver;
|
||||
/**
|
||||
* MobileTemplate模板引擎驱动
|
||||
*/
|
||||
class Mobile {
|
||||
/**
|
||||
* 渲染模板输出
|
||||
* @access public
|
||||
* @param string $templateFile 模板文件名
|
||||
* @param array $var 模板变量
|
||||
* @return void
|
||||
*/
|
||||
public function fetch($templateFile,$var) {
|
||||
$templateFile=substr($templateFile,strlen(THEME_PATH));
|
||||
$var['_think_template_path']=$templateFile;
|
||||
exit(json_encode($var));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user