N°858.2 Fixed regression introduced in r4716 making DataSynchro menu hidden from the Admin menu

SVN:trunk[4879]
This commit is contained in:
Guillaume Lajarige
2017-08-25 13:10:31 +00:00
parent b02d347541
commit 8ca6610e75
2 changed files with 1 additions and 6 deletions

View File

@@ -57,6 +57,7 @@ class ItopWelcome extends ModuleHandlerAPI
new WebPageMenuNode('ExportMenu', utils::GetAbsoluteUrlAppRoot().'webservices/export-v2.php?interactive=1', $oAdminMenu->GetIndex(), 9 /* fRank */);
new WebPageMenuNode('DataModelMenu', utils::GetAbsoluteUrlAppRoot().'pages/schema.php', $oAdminMenu->GetIndex(), 10 /* fRank */);
new WebPageMenuNode('UniversalSearchMenu', utils::GetAbsoluteUrlAppRoot().'pages/UniversalSearch.php', $oAdminMenu->GetIndex(), 11 /* fRank */);
new OQLMenuNode('DataSources', 'SELECT SynchroDataSource', $oAdminMenu->GetIndex(), 12 /* fRank */, true);
}
}
}

View File

@@ -2919,9 +2919,3 @@ class SynchroExecution
return false;
}
}
if (UserRights::IsAdministrator())
{
$oAdminMenu = new MenuGroup('AdminTools', 80 /* fRank */);
new OQLMenuNode('DataSources', 'SELECT SynchroDataSource', $oAdminMenu->GetIndex(), 12 /* fRank */, true);
}