41 $phpfile = $this->
getValue(
"se_phpfile");
42 $phpfunc = $this->
getValue(
"se_phpfunc");
43 $phparg = $this->
getValue(
"se_phparg");
44 if (!include_once (
"EXTERNALS/$phpfile")) {
46 $action->AddWarningMsg(sprintf(_(
"php file %s needed for request not found") ,
"EXTERNALS/$phpfunc"));
56 $moreargs = explode(
",", $phparg);
57 foreach ($moreargs as $k => $v) {
60 if (($v[0] ==
"%") && (substr($v, -1) ==
"%")) {
61 $aid = substr($v, 1, -1);
62 if ($aid ==
"THIS") $moreargs[$k] = & $this;
73 $res = call_user_func_array($phpfunc,
$arg);
105 if ($controlview)
$uid = 1;