Changeset 9906

Show
Ignore:
Timestamp:
11/13/08 11:16:34 (2 months ago)
Author:
afz
Message:

delete extra shout in Users and Tms

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/jaws/html/gadgets/Tms/AdminModel.php

    r9156 r9906  
    5555        $GLOBALS['app']->Registry->NewKey('/gadgets/Tms/pluggable',  'false'); 
    5656        $GLOBALS['app']->Registry->NewKey('/gadgets/Tms/share_mode', 'yes'); 
    57  
    58         // Events 
    59         $GLOBALS['app']->loadClass('Shouter', 'Jaws_EventShouter'); 
    60         $GLOBALS['app']->Shouter->NewShouter('Core', 'onInstallTheme');   //trigger an action when we install a theme 
    61         $GLOBALS['app']->Shouter->NewShouter('Core', 'onUninstallTheme'); //trigger an action when we uninstall a theme 
    62         $GLOBALS['app']->Shouter->NewShouter('Core', 'onDisableTheme');   //and when we disable a theme 
    6357 
    6458        return true; 
  • trunk/jaws/html/gadgets/Users/AdminModel.php

    r9899 r9906  
    3030        $GLOBALS['app']->Registry->NewKey('/gadgets/Users/password_recovery', 'false'); 
    3131 
    32         // Events 
    33         $GLOBALS['app']->loadClass('Shouter', 'Jaws_EventShouter'); 
    34         $GLOBALS['app']->Shouter->NewShouter('Core', 'onAddUser');             // trigger an action when we add an user 
    35         $GLOBALS['app']->Shouter->NewShouter('Core', 'onDeleteUser');          // trigger an action when we delete an user 
    36         $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 group 
    38         $GLOBALS['app']->Shouter->NewShouter('Core', 'onDeleteGroup');         // and also when we delete a group 
    39         $GLOBALS['app']->Shouter->NewShouter('Core', 'onUpdateGroup');         // and when we update a group.. 
    40  
    4132        //Create the group 'Jaws_Users' 
    4233        require_once JAWS_PATH . 'include/Jaws/User.php';