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() {
|
|
|
|
$wall = $this->config['user']['wall'];
|
|
|
|
if(strlen($wall)>3){
|
|
|
|
$this->assign('wall',$wall);
|
|
|
|
}else{
|
|
|
|
$this->assign('wall',STATIC_PATH.'images/wall_page/'.$wall.'.jpg');
|
|
|
|
}
|
|
|
|
if (!is_dir(MYHOME.'desktop/') && path_writeable(MYHOME)) {
|
|
|
|
mkdir(MYHOME.'desktop/');
|
|
|
|
}
|
|
|
|
$this->display('index.php');
|
|
|
|
}
|
2015-03-22 20:54:54 +00:00
|
|
|
}
|