Commit ef83d5c7cfdc1fb2ad3b56f9abdc738a352344f9
1 parent
3d43c19b
Add Conditions and Saved Search pages to admin pages.
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@4441 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
0 deletions
plugins/ktcore/KTAdminPlugins.php
| ... | ... | @@ -36,6 +36,7 @@ $oPlugin->registerAdminPage("units",'KTUnitAdminDispatcher',"principals", _("Con |
| 36 | 36 | // security |
| 37 | 37 | $oPlugin->registerAdminPage("permissions",'ManagePermissionsDispatcher',"security", _("Permissions"), _("Create or Delete permissions."), 'admin/managePermissions.php', null); |
| 38 | 38 | $oPlugin->registerAdminPage("roles",'RoleAdminDispatcher',"security", _("Roles"), _("Create or Delete roles") . " (incomplete).", 'admin/roleManagement.php', null); |
| 39 | +$oPlugin->registerAdminPage("conditions",'KTConditionDispatcher',"security", _("Conditions"), _("Manage document conditions, which can be used to control whether certain actions are permitted or not."), 'admin/conditions.php', null); | |
| 39 | 40 | |
| 40 | 41 | // documents |
| 41 | 42 | $oPlugin->registerAdminPage("typemanagement",'KTDocumentTypeDispatcher','documents', _('Document Types'), _('Manage the different classes of document which can be added to the system.'), 'admin/documentTypes.php', null); |
| ... | ... | @@ -50,5 +51,6 @@ $oPlugin->registerAdminPage("expunge",'DeletedDocumentsDispatcher','storage', _( |
| 50 | 51 | |
| 51 | 52 | // misc |
| 52 | 53 | $oPlugin->registerAdminPage("helpmanagement",'ManageHelpDispatcher','misc', _('Edit Help files'), _('Change the help files that are displayed to users.'), 'admin/manageHelp.php', null); |
| 54 | +$oPlugin->registerAdminPage("savedsearch",'KTSavedSearchDispatcher','misc', _('Saved searches'), _('Manage saved searches - searches available by default to all users.'), 'admin/manageHelp.php', null); | |
| 53 | 55 | |
| 54 | 56 | ?> | ... | ... |