You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
385 B
20 lines
385 B
<?php
|
|
//require_once "../header_nomenu.php";
|
|
#当前登陆者
|
|
|
|
|
|
define("ID", 'P0044');
|
|
$arr = array(
|
|
'../../workflow/impl/*.php',
|
|
'../../workflow/model/*.php',
|
|
'../../workflow/lib/*.php',
|
|
'../../workflow/Handler/*.php',
|
|
'../../workflow/*.php'
|
|
);
|
|
|
|
foreach ($arr as $dir) {
|
|
$files = glob($dir);
|
|
foreach ($files as $file) {
|
|
require_once $file;
|
|
}
|
|
}
|
|
|