mirror of https://github.com/helloxz/onenav.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
320 B
17 lines
320 B
2 years ago
|
<?php
|
||
|
/**
|
||
|
* name:一些通用的前端页面控制器
|
||
|
*/
|
||
|
|
||
|
require('functions/helper.php');
|
||
|
|
||
|
//获取版本号
|
||
|
$version = new_get_version();
|
||
|
|
||
|
//获取当前站点信息
|
||
|
$site = $db->get('on_options','value',[ 'key' => "s_site" ]);
|
||
|
$site = unserialize($site);
|
||
|
|
||
|
|
||
|
//载入视图
|
||
|
require('templates/universal/index.php');
|