Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/**
* Block manager
*
* @module package/quiqqer/blocks/bin/Manager
* @author www.pcsg.de (Henning Leutz)
*/
define('package/quiqqer/blocks/bin/Manager', [
'qui/QUI',
'qui/controls/desktop/Panel',
'Locale'
], function(QUI, QUIPanel, QUILocale)
{
"use strict";
var lg = 'quiqqer/blocks';
return new Class({
Extends : QUIPanel,
Type : 'package/quiqqer/blocks/bin/Manager',
Binds : [
'$onCreate'
],
options : {
title : QUILocale.get( lg, 'menu.blocks.text' )
},
initialize : function(options)
{
this.parent( options );
this.addEvents({
onCreate : this.$onCreate
});
},
/**
* event : on create
*/
$onCreate : function()
{
}
});
});