mirror of
https://github.com/DzzXH/DzzOffice.git
synced 2026-01-19 14:15:19 +08:00
16 lines
485 B
PHP
16 lines
485 B
PHP
<?php
|
|
/*
|
|
* @copyright Leyun internet Technology(Shanghai)Co.,Ltd
|
|
* @license http://www.dzzoffice.com/licenses/license.txt
|
|
* @package DzzOffice
|
|
* @link http://www.dzzoffice.com
|
|
* @author zyx(zyx@dzz.cc)
|
|
*/
|
|
if(!defined('IN_DZZ')) {
|
|
exit('Access Denied');
|
|
}
|
|
$uid = intval($_G['uid']);
|
|
$space = C::t('user_profile')->get_userprofile_by_uid($uid);//用户资料信息
|
|
$langList = $_G['config']['output']['language_list'];
|
|
include template('navmenu');
|
|
exit(); |