mirror of
https://github.com/DzzXH/DzzOffice.git
synced 2026-01-15 22:36:50 +08:00
20 lines
463 B
PHP
20 lines
463 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');
|
|
}
|
|
|
|
C::t('notification')->delete_clear(0, 30);
|
|
C::t('notification')->delete_clear(1, 30);
|
|
C::t('notification')->optimize();
|
|
|
|
?>
|