mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-27 02:14:45 +01:00
"let new method hooks fail gracefully if hook class-file does not exists (like the old hooks do, eg. if app got removed)"
This commit is contained in:
parent
da7db21806
commit
1754508ce9
@ -153,8 +153,19 @@ class hooks
|
|||||||
if (strpos($method,'::') !== false || count($parts) == 3 && $parts[1] != 'inc' && $parts[2] != 'php')
|
if (strpos($method,'::') !== false || count($parts) == 3 && $parts[1] != 'inc' && $parts[2] != 'php')
|
||||||
{
|
{
|
||||||
// new style hook with method string or static method (eg. 'class::method')
|
// new style hook with method string or static method (eg. 'class::method')
|
||||||
|
try
|
||||||
|
{
|
||||||
return ExecMethod($method,$args);
|
return ExecMethod($method,$args);
|
||||||
}
|
}
|
||||||
|
catch(egw_exception_assertion_failed $e)
|
||||||
|
{
|
||||||
|
if (substr($e->getMessage(),-19) == '.inc.php not found!')
|
||||||
|
{
|
||||||
|
return false; // fail gracefully if hook class-file does not exists (like the old hooks do, eg. if app got removed)
|
||||||
|
}
|
||||||
|
throw $e;
|
||||||
|
}
|
||||||
|
}
|
||||||
// old style hook, with an include file
|
// old style hook, with an include file
|
||||||
if ($try_unregistered && empty($method))
|
if ($try_unregistered && empty($method))
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user