/**
  * 加载头部
  * @return [type] [description]
  */
 private function header()
 {
     // 头部样式
     $strStyle = "<link href='Public/style/base.css' rel='stylesheet'>";
     $strStyle .= "<link href='Public/style/media.css' rel='stylesheet'>";
     // 首页面样式
     if (empty($_REQUEST['a'])) {
         $strStyle .= "<link href='Public/style/index.css' rel='stylesheet'>";
     }
     // 关于我页面样式
     if (isset($_REQUEST['a']) && $_REQUEST['a'] == 'about') {
         $strStyle .= "<link href='Public/style/about.css' rel='stylesheet'>";
     }
     // 慢生活
     if (isset($_REQUEST['a']) && $_REQUEST['a'] == 'newlist') {
         $strStyle .= "<link href='Public/style/style.css' rel='stylesheet'>";
     }
     // 模版分享
     if (isset($_REQUEST['a']) && $_REQUEST['a'] == 'share') {
         $strStyle .= "<link href='Public/style/style.css' rel='stylesheet'>";
     }
     // 模版分享
     if (isset($_REQUEST['a']) && $_REQUEST['a'] == 'show') {
         $strStyle .= "<link href='Public/style/style.css' rel='stylesheet'>";
     }
     // 留言
     if (isset($_REQUEST['a']) && $_REQUEST['a'] == 'message') {
         $strStyle .= "<link href='Public/style/about.css' rel='stylesheet'>";
     }
     $this->view->assgin('style', $strStyle);
     $init = new InitModel();
     $inits = $init->getOne();
     $this->view->assgin('title', $inits['i_name']);
     $this->view->assgin('WebName', $inits['i_name']);
     $this->view->assgin('WebIntro', $inits['i_intro']);
     // 头像文件
     $abouts = new UserModel();
     $contente = $abouts->getUser();
     $this->view->assgin('head_image', $contente['u_head_image']);
     $this->view->display('temp/header.html');
     // 内容样式
     $this->view->assgin('rolling_text', $inits['i_rolling_text']);
 }
 /**
  * [初始化配置]
  * By:0x584A
  * Date:2015年9月20日 02:05:27
  */
 public function init()
 {
     $init = new InitModel();
     $lists = $init->getOne();
     include_once VIEW_DIR . '/init.html';
 }
 /**
  * 修改初始化配置
  * By:0x584A
  * Date:2015年9月20日 15:48:42
  */
 public function editinit()
 {
     // 接受用户数据
     $webname = trim($_REQUEST['webname']);
     $intro = trim($_REQUEST['intro']);
     $seturl = trim($_REQUEST['seturl']);
     $rollingtext = trim($_REQUEST['rollingtext']);
     $filing = trim($_REQUEST['filing']);
     // 验证
     if (empty($webname) || empty($intro) || empty($seturl) || empty($rollingtext) || empty($filing)) {
         $this->error('index.php?c=index&a=init', '修改数据中不能有为空数据...');
     }
     $init = new InitModel();
     if ($init->UpdateById($webname, $intro, $seturl, $rollingtext, $filing)) {
         $logs = new LogsModel();
         $logs->insertOne($_SESSION['adminuser']['u_name'] . '修改了网站配置');
         $this->success('index.php?c=index&a=init', '修改成功...');
     } else {
         $this->error('index.php?c=index&a=init', '修改失败,请联系管理员...');
     }
 }