信呼OA版本v2.3.8

This commit is contained in:
雨中磐石
2022-08-14 16:47:40 +08:00
parent 4640677d27
commit e3fcd913e3
1405 changed files with 133635 additions and 73 deletions

19
task.php Normal file
View File

@@ -0,0 +1,19 @@
<?php
/**
* 计划任务地址指向目录webmain/task下
* 也可用cli处理的命令如php task.php cli,run
* 主页http://www.rockoa.com/
* 软件:信呼
* 作者:雨中磐石(rainrock)
*/
define('ENTRANCE', 'task');
include_once('config/config.php');
$m = 'mode';
if(isset($argv[1])){
$_mar = explode(',', $argv[1]);
$m = $_mar[0].'|runt';
if(isset($_mar[1]))$a = $_mar[1];
}
$d = $rock->get('d','task');
$m = $rock->get('m',$m);
include_once('include/View.php');