Commit 450ebf74f33e4efd65d547c301ef1a7d2fc7448e
1 parent
fdd524f4
KTS-2365
"Add new bulk actions - copy, archive, extract" Implemented. Committed By: Conrad Vermeulen Reviewed By: Megan Watson git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@7215 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
4 additions
and
3 deletions
plugins/ktcore/KTCorePlugin.php
| ... | ... | @@ -75,12 +75,11 @@ class KTCorePlugin extends KTPlugin { |
| 75 | 75 | // Viewlets |
| 76 | 76 | $this->registerAction('documentviewlet', 'KTWorkflowViewlet', 'ktcore.viewlets.document.workflow', 'KTDocumentViewlets.php'); |
| 77 | 77 | |
| 78 | - | |
| 78 | + // Notifications | |
| 79 | 79 | $this->registerNotificationHandler('KTAssistNotification', 'ktcore/assist', 'KTAssist.php'); |
| 80 | 80 | $this->registerNotificationHandler('KTSubscriptionNotification', 'ktcore/subscriptions', KT_LIB_DIR . '/dashboard/Notification.inc.php'); |
| 81 | 81 | $this->registerNotificationHandler('KTWorkflowNotification', 'ktcore/workflow', KT_LIB_DIR . '/dashboard/Notification.inc.php'); |
| 82 | 82 | |
| 83 | - | |
| 84 | 83 | // Permissions |
| 85 | 84 | $this->registerAction('documentinfo', 'KTDocumentPermissionsAction', 'ktcore.actions.document.permissions', 'KTPermissions.php'); |
| 86 | 85 | $this->registerAction('folderaction', 'KTRoleAllocationPlugin', 'ktcore.actions.folder.roles', 'KTPermissions.php'); |
| ... | ... | @@ -89,7 +88,9 @@ class KTCorePlugin extends KTPlugin { |
| 89 | 88 | // Bulk Actions |
| 90 | 89 | $this->registerAction('bulkaction', 'KTBulkDeleteAction', 'ktcore.actions.bulk.delete', 'KTBulkActions.php'); |
| 91 | 90 | $this->registerAction('bulkaction', 'KTBulkMoveAction', 'ktcore.actions.bulk.move', 'KTBulkActions.php'); |
| 92 | - | |
| 91 | + $this->registerAction('bulkaction', 'KTBulkCopyAction', 'ktcore.actions.bulk.copy', 'KTBulkActions.php'); | |
| 92 | + $this->registerAction('bulkaction', 'KTBulkArchiveAction', 'ktcore.actions.bulk.archive', 'KTBulkActions.php'); | |
| 93 | + $this->registerAction('bulkaction', 'KTBrowseBulkExportAction', 'ktcore.actions.bulk.export', 'KTBulkActions.php'); | |
| 93 | 94 | |
| 94 | 95 | // Dashlets |
| 95 | 96 | $this->registerDashlet('KTInfoDashlet', 'ktcore.dashlet.info', 'KTDashlets.php'); | ... | ... |