Pman.Tab.AdminLogs.js
[Pman.Admin] / Pman.Tab.AdminLogs.js
1 //<script type="text/javascript">
2
3 // Auto generated file - created by app.Builder.js- do not edit directly (at present!)
4
5
6
7 // register the module first
8 Pman.on('beforeload', function()
9 {
10     Pman.register({
11         modKey : '999-Pman.Tab.AdminLogs',
12         module : Pman.Tab.AdminLogs,
13         region : 'center',
14         parent : false,
15         name : "Logs",
16         disabled : false, 
17         permname: '' 
18     });
19 });
20
21 Pman.Tab.AdminLogs = new Roo.util.Observable({
22
23     panel : false,
24     disabled : false,
25     parentLayout:  false,
26
27     add : function(parentLayout, region)
28     {
29
30         var _this = this;
31         this.parentLayout = parentLayout;
32
33         this.panel = parentLayout.addxtype({
34             xtype: 'NestedLayoutPanel',
35             xns: Roo,
36             background : true,
37             fitToFrame : true,
38             region : 'center',
39             title : "Logs",
40             layout : {
41                 xtype: 'BorderLayout',
42                 xns: Roo,
43                 center : {
44                     xtype: 'LayoutRegion',
45                     xns: Roo,
46                     titlebar : false,
47                     tabPosition : 'top'
48                 }
49             }
50         });
51         this.layout = this.panel.layout;
52
53     }
54 });