KodExplorer/controller/desktop.class.php

38 lines
932 B
PHP
Raw Normal View History

2016-12-21 08:01:06 +00:00
<?php
2015-03-22 20:54:54 +00:00
/*
* @link http://www.kalcaddle.com/
* @author warlee | e-mail:kalcaddle@qq.com
* @copyright warlee 2014.(Shanghai)Co.,Ltd
* @license http://kalcaddle.com/tools/licenses/license.txt
*/
class desktop extends Controller{
2016-12-21 08:01:06 +00:00
function __construct() {
parent::__construct();
$this->tpl = TEMPLATE.'desktop/';
}
public function index() {
2017-01-05 10:47:25 +00:00
$wap = is_wap() && (!isset($_COOKIE['forceWap']) || $_COOKIE['forceWap'] == '1');
if($wap){
header("location:./index.php?explorer");
exit;
}
2016-12-21 08:01:06 +00:00
$wall = $this->config['user']['wall'];
if(strlen($wall)>3){
$this->assign('wall',$wall);
}else{
$this->assign('wall',STATIC_PATH.'images/wall_page/'.$wall.'.jpg');
}
2016-12-30 15:55:50 +00:00
$desktop = iconv_system(HOME.'desktop/');
if ($GLOBALS['is_root']) {
$desktop = iconv_system(MYHOME.'desktop/');
}
if (!file_exists($desktop)) {
@mkdir($desktop);
2016-12-21 08:01:06 +00:00
}
$this->display('index.php');
}
2015-03-22 20:54:54 +00:00
}