mirror of
https://github.com/DzzXH/DzzOffice.git
synced 2026-03-11 00:12:43 +08:00
16 lines
330 B
PHP
16 lines
330 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');
|
||
|
|
}
|
||
|
|
function test(){
|
||
|
|
return lang('title1');
|
||
|
|
}
|
||
|
|
?>
|