Allow editing the "Welcome" dashboard

SVN:trunk[2075]
This commit is contained in:
Denis Flaven
2012-05-30 14:57:57 +00:00
parent 5cfc82437f
commit 814ff60c07

View File

@@ -627,6 +627,18 @@ try
case 'dashboard_editor':
$sId = utils::ReadParam('id', '', false, 'raw_data');
// Before searching for the menus make sure that all of them exist
// Build menus from module handlers
//
foreach(get_declared_classes() as $sPHPClass)
{
if (is_subclass_of($sPHPClass, 'ModuleHandlerAPI'))
{
$aCallSpec = array($sPHPClass, 'OnMenuCreation');
call_user_func($aCallSpec);
}
}
$idx = ApplicationMenu::GetMenuIndexById($sId);
$oMenu = ApplicationMenu::GetMenuNode($idx);
$oMenu->RenderEditor($oPage);