<?php
|
|
class index_controller extends common{
|
function index_action(){
|
|
if ($_GET['token'] && $this->config['sy_datav_token'] && $_GET['token'] == $this->config['sy_datav_token']){
|
|
$sy_datav_diydata = json_decode($this->config['sy_datav_diydata'],true);
|
|
if($sy_datav_diydata['datavtitle']){
|
$title = $sy_datav_diydata['datavtitle'];
|
}else{
|
$title = $this->config['sy_webname'].'大数据平台';
|
}
|
|
$this->yunset('token',$_GET['token']);
|
$this->yunset('datavtitle',$title);
|
$this->yun_tpl(array('index'));
|
}else{
|
header("location:".$this->config['sy_weburl']);
|
}
|
|
|
}
|
|
}
|
?>
|