1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-14 02:24:08 +02:00

Plugin Manager rewrite - finally using admin-ui.

This commit is contained in:
Cameron
2017-02-05 15:49:03 -08:00
parent 372141dddf
commit 3a81c1097a
7 changed files with 1418 additions and 172 deletions

View File

@@ -4782,7 +4782,7 @@ class e_form
break;
case 'method': // Custom Function
$method = $attributes['field']; // prevents table alias in method names. ie. u.my_method.
$method = $attributes['field']; // prevents table alias in method names. ie. u.my_method.
$_value = $value;
if(!empty($attributes['data']) && $attributes['data'] == 'array') // FIXME @SecretR - please move this to where it should be.
@@ -4800,7 +4800,9 @@ class e_form
}
else
{
return "<span class='label label-important label-danger'>Missing: ".$method."()</span>";
$className = get_class($this);
e107::getDebug()->log("Missing Method: ".$className."::".$meth." ".print_a($attributes,true));
return "<span class='label label-important label-danger'>Missing Method</span>";
}
// print_a($attributes);
// Inline Editing.