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.
18 lines
330 B
18 lines
330 B
<?php
|
|
|
|
define("ID", $user_id);
|
|
|
|
$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;
|
|
}
|
|
}
|
|
|