14 lines
451 B
Plaintext
14 lines
451 B
Plaintext
if(!empty($moduleExtPaths))
|
|
{
|
|
$extActionFile = $moduleExtPaths['common'] . $methodName . '.php';
|
|
if(file_exists($extActionFile))
|
|
{
|
|
$control = $extActionFile;
|
|
}
|
|
else
|
|
{
|
|
$extActionFile = $moduleExtPaths['xuan'] . $methodName . '.php';
|
|
if(file_exists($extActionFile)) $control = $extActionFile;
|
|
}
|
|
}
|