Changeset 9906
- Timestamp:
- 11/13/08 11:16:34 (2 months ago)
- Files:
-
- trunk/jaws/html/gadgets/Tms/AdminModel.php (modified) (1 diff)
- trunk/jaws/html/gadgets/Users/AdminModel.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/jaws/html/gadgets/Tms/AdminModel.php
r9156 r9906 55 55 $GLOBALS['app']->Registry->NewKey('/gadgets/Tms/pluggable', 'false'); 56 56 $GLOBALS['app']->Registry->NewKey('/gadgets/Tms/share_mode', 'yes'); 57 58 // Events59 $GLOBALS['app']->loadClass('Shouter', 'Jaws_EventShouter');60 $GLOBALS['app']->Shouter->NewShouter('Core', 'onInstallTheme'); //trigger an action when we install a theme61 $GLOBALS['app']->Shouter->NewShouter('Core', 'onUninstallTheme'); //trigger an action when we uninstall a theme62 $GLOBALS['app']->Shouter->NewShouter('Core', 'onDisableTheme'); //and when we disable a theme63 57 64 58 return true; trunk/jaws/html/gadgets/Users/AdminModel.php
r9899 r9906 30 30 $GLOBALS['app']->Registry->NewKey('/gadgets/Users/password_recovery', 'false'); 31 31 32 // Events33 $GLOBALS['app']->loadClass('Shouter', 'Jaws_EventShouter');34 $GLOBALS['app']->Shouter->NewShouter('Core', 'onAddUser'); // trigger an action when we add an user35 $GLOBALS['app']->Shouter->NewShouter('Core', 'onDeleteUser'); // trigger an action when we delete an user36 $GLOBALS['app']->Shouter->NewShouter('Core', 'onUpdateUser'); // and when we update a user..37 $GLOBALS['app']->Shouter->NewShouter('Core', 'onAddGroup'); // and also when we add a group38 $GLOBALS['app']->Shouter->NewShouter('Core', 'onDeleteGroup'); // and also when we delete a group39 $GLOBALS['app']->Shouter->NewShouter('Core', 'onUpdateGroup'); // and when we update a group..40 41 32 //Create the group 'Jaws_Users' 42 33 require_once JAWS_PATH . 'include/Jaws/User.php';
