sync
[Pman.Admin] / Pman.Tab.Groups.js
1 //<script type="text/javascript">
2
3
4 // fixme - needs a delayed create..
5
6
7 Pman.on('beforeload', function()
8
9     
10     Pman.Tab.Groups.title = "Groups";
11     
12  
13     Pman.register({
14         modKey : '00-pman-tab-groups',
15         module : Pman.Tab.Groups,
16         region : 'west',
17         parent : Pman.Tab.GroupMgr,
18         name : "Permission Groups"
19     });
20 });   
21
22 Pman.Tab.Groups = new Pman.Tab.GroupsList({
23     id : 'groups',
24     title:  "Groups", // fixme change to method!!!
25     type : 0,
26     getDialog : function () { return Pman.Dialog.Groups; }
27 });