14 lines
498 B
PHP
14 lines
498 B
PHP
<?php
|
|
if (!defined('IN_OAOOA')) {
|
|
exit('Access Denied');
|
|
}
|
|
$overt = getglobal('setting/overt');
|
|
if(!$overt && !$overt = C::t('setting')->fetch('overt')){
|
|
Hook::listen('check_login');//检查是否登录,未登录跳转到登录界面
|
|
}
|
|
$ismobile = helper_browser::ismobile();
|
|
// if ($ismobile) {
|
|
// include template($themedata['themefolder'].'/mobile/page/filelist');
|
|
// } else {
|
|
include template('libraryview/pc/page/index');
|
|
// }
|