mirror of
https://github.com/e107inc/e107.git
synced 2025-07-31 03:40:37 +02:00
Added e_user.php 'settings' method to define additional (extended) user fields dynamically. See _blank/e_user.php
This commit is contained in:
@@ -6679,7 +6679,15 @@ var_dump($select_options);*/
|
||||
$cls = $this;
|
||||
}
|
||||
|
||||
$ret = call_user_func_array(array($cls, $meth), array($value, 'write', $parms));
|
||||
if(method_exists($cls, $meth))
|
||||
{
|
||||
$ret = call_user_func_array(array($cls, $meth), array($value, 'write', $parms));
|
||||
}
|
||||
else
|
||||
{
|
||||
$ret = "(Method ".$meth." not found in ".get_class($cls).")";
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
case 'upload': //TODO - from method
|
||||
|
Reference in New Issue
Block a user