1
0
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:
Cameron
2021-01-18 18:10:00 -08:00
parent 3ee52f0cbe
commit 8f27be1150
9 changed files with 289 additions and 23 deletions

View File

@@ -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