mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 23:00:56 +01:00
Look for old widgets that were adapted to etemplate2 but still follow old name scheme
This commit is contained in:
parent
5896c7e103
commit
88a6114c0a
@ -310,6 +310,12 @@ class etemplate_widget
|
|||||||
{
|
{
|
||||||
$class_name = self::$widget_registry[$basetype];
|
$class_name = self::$widget_registry[$basetype];
|
||||||
}
|
}
|
||||||
|
// Look for old widgets that were adapted but not renamed
|
||||||
|
else if (class_exists($class_name = $basetype.'_widget') && in_array('etemplate_widget', class_parents($class_name)))
|
||||||
|
{
|
||||||
|
// Side-effects set $class_name
|
||||||
|
//error_log("Ported old widget: $class_name");
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// Fall back to widget class, we can not ignore it, as the widget may contain other widgets
|
// Fall back to widget class, we can not ignore it, as the widget may contain other widgets
|
||||||
|
Loading…
Reference in New Issue
Block a user