| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413 |
- /**
- *
- * @class MODx.panel.Plugin
- * @extends MODx.FormPanel
- * @param {Object} config An object of config properties
- * @xtype panel-plugin
- */
- MODx.panel.Plugin = function(config) {
- config = config || {};
- config.record = config.record || {};
- config = MODx.setStaticElementsConfig(config, 'plugin');
- Ext.applyIf(config,{
- url: MODx.config.connector_url
- ,baseParams: {
- action: 'element/plugin/get'
- }
- ,id: 'modx-panel-plugin'
- ,cls: 'container form-with-labels'
- ,class_key: 'modPlugin'
- ,plugin: ''
- ,bodyStyle: ''
- ,allowDrop: false
- ,items: [{
- html: _('plugin_new')
- ,id: 'modx-plugin-header'
- ,xtype: 'modx-header'
- },MODx.getPageStructure([{
- title: _('plugin_title')
- ,layout: 'form'
- ,id: 'modx-plugin-form'
- ,labelWidth: 150
- ,defaults: { border: false ,msgTarget: 'side' }
- ,items: [{
- html: '<p>'+_('plugin_msg')+'</p>'
- ,id: 'modx-plugin-msg'
- ,xtype: 'modx-description'
- },{
- layout: 'column'
- ,border: false
- ,defaults: {
- layout: 'form'
- ,labelAlign: 'top'
- ,anchor: '100%'
- ,border: false
- ,cls:'main-wrapper'
- ,labelSeparator: ''
- }
- ,items: [{
- columnWidth: .6
- ,items: [{
- xtype: 'hidden'
- ,name: 'id'
- ,id: 'modx-plugin-id'
- ,value: config.record.id || 0
- },{
- xtype: 'hidden'
- ,name: 'props'
- ,id: 'modx-plugin-props'
- ,value: config.record.props || null
- },{
- xtype: 'textfield'
- ,fieldLabel: _('name')+'<span class="required">*</span>'
- ,description: MODx.expandHelp ? '' : _('plugin_desc_name')
- ,name: 'name'
- ,id: 'modx-plugin-name'
- ,anchor: '100%'
- ,maxLength: 255
- ,enableKeyEvents: true
- ,allowBlank: false
- ,value: config.record.name
- ,listeners: {
- 'keyup': {scope:this,fn:function(f,e) {
- var title = Ext.util.Format.stripTags(f.getValue());
- title = _('plugin')+': '+Ext.util.Format.htmlEncode(title);
- if (MODx.request.a !== 'element/plugin/create' && MODx.perm.tree_show_element_ids === 1) {
- title = title+ ' <small>('+this.config.record.id+')</small>';
- }
- Ext.getCmp('modx-plugin-header').getEl().update(title);
- MODx.setStaticElementPath('plugin');
- }}
- }
- },{
- xtype: MODx.expandHelp ? 'label' : 'hidden'
- ,forId: 'modx-plugin-name'
- ,html: _('plugin_desc_name')
- ,cls: 'desc-under'
- },{
- xtype: 'textarea'
- ,fieldLabel: _('plugin_desc')
- ,description: MODx.expandHelp ? '' : _('plugin_desc_description')
- ,name: 'description'
- ,id: 'modx-plugin-description'
- ,anchor: '100%'
- ,maxLength: 255
- ,value: config.record.description
- },{
- xtype: MODx.expandHelp ? 'label' : 'hidden'
- ,forId: 'modx-plugin-description'
- ,html: _('plugin_desc_description')
- ,cls: 'desc-under'
- },{
- xtype: 'modx-combo-browser'
- ,browserEl: 'modx-browser'
- ,fieldLabel: _('static_file')
- ,description: MODx.expandHelp ? '' : _('static_file_msg')
- ,name: 'static_file'
- // ,hideFiles: true
- ,source: config.record.source != null ? config.record.source : MODx.config.default_media_source
- ,openTo: config.record.openTo || ''
- ,id: 'modx-plugin-static-file'
- ,triggerClass: 'x-form-code-trigger'
- ,anchor: '100%'
- ,maxLength: 255
- ,value: config.record.static_file || ''
- ,hidden: !config.record['static']
- ,hideMode: 'offsets'
- ,validator: function(value){
- if (Ext.getCmp('modx-plugin-static').getValue() === true) {
- if (Ext.util.Format.trim(value) != '') {
- return true;
- } else {
- return _('static_file_ns');
- }
- }
- return true;
- }
- },{
- xtype: MODx.expandHelp ? 'label' : 'hidden'
- ,forId: 'modx-plugin-static-file'
- ,id: 'modx-plugin-static-file-help'
- ,html: _('static_file_msg')
- ,cls: 'desc-under'
- ,hidden: !config.record['static']
- ,hideMode: 'offsets'
- },{
- html: MODx.onPluginFormRender
- ,border: false
- }]
- },{
- columnWidth: .4
- ,items: [{
- xtype: 'modx-combo-category'
- ,fieldLabel: _('category')
- ,description: MODx.expandHelp ? '' : _('plugin_desc_category')
- ,name: 'category'
- ,id: 'modx-plugin-category'
- ,anchor: '100%'
- ,value: config.record.category || 0
- ,listeners: {
- 'afterrender': {scope:this,fn:function(f,e) {
- setTimeout(function(){
- MODx.setStaticElementPath('plugin');
- }, 200);
- }}
- ,'change': {scope:this,fn:function(f,e) {
- MODx.setStaticElementPath('plugin');
- }}
- }
- },{
- xtype: MODx.expandHelp ? 'label' : 'hidden'
- ,forId: 'modx-plugin-category'
- ,html: _('plugin_desc_category')
- ,cls: 'desc-under'
- },{
- xtype: 'xcheckbox'
- ,description: MODx.expandHelp ? '' : _('plugin_disabled_msg')
- ,hideLabel: true
- ,boxLabel: _('plugin_disabled')
- ,name: 'disabled'
- ,id: 'modx-plugin-disabled'
- ,inputValue: 1
- ,checked: config.record.disabled || 0
- },{
- xtype: MODx.expandHelp ? 'label' : 'hidden'
- ,forId: 'modx-plugin-disabled'
- ,html: _('plugin_disabled_msg')
- ,cls: 'desc-under'
- },{
- xtype: 'xcheckbox'
- ,boxLabel: _('plugin_lock')
- ,description: MODx.expandHelp ? '' : _('plugin_lock_msg')
- ,hideLabel: true
- ,name: 'locked'
- ,id: 'modx-plugin-locked'
- ,inputValue: 1
- ,checked: config.record.locked || 0
- },{
- xtype: MODx.expandHelp ? 'label' : 'hidden'
- ,forId: 'modx-plugin-locked'
- ,html: _('plugin_lock_msg')
- ,cls: 'desc-under'
- },{
- xtype: 'xcheckbox'
- ,boxLabel: _('clear_cache_on_save')
- ,description: MODx.expandHelp ? '' : _('clear_cache_on_save_msg')
- ,hideLabel: true
- ,name: 'clearCache'
- ,id: 'modx-plugin-clear-cache'
- ,inputValue: 1
- ,checked: Ext.isDefined(config.record.clearCache) || true
- },{
- xtype: MODx.expandHelp ? 'label' : 'hidden'
- ,forId: 'modx-plugin-clear-cache'
- ,html: _('clear_cache_on_save_msg')
- ,cls: 'desc-under'
- },{
- xtype: 'xcheckbox'
- ,hideLabel: true
- ,boxLabel: _('is_static')
- ,description: MODx.expandHelp ? '' : _('is_static_msg')
- ,name: 'static'
- ,id: 'modx-plugin-static'
- ,inputValue: 1
- ,checked: config.record['static'] || false
- },{
- xtype: MODx.expandHelp ? 'label' : 'hidden'
- ,forId: 'modx-plugin-static'
- ,id: 'modx-plugin-static-help'
- ,html: _('is_static_msg')
- ,cls: 'desc-under'
- },{
- xtype: 'modx-combo-source'
- ,fieldLabel: _('static_source')
- ,description: MODx.expandHelp ? '' : _('static_source_msg')
- ,name: 'source'
- ,id: 'modx-plugin-static-source'
- ,anchor: '100%'
- ,maxLength: 255
- ,value: config.record.source != null ? config.record.source : MODx.config.default_media_source
- ,hidden: !config.record['static']
- ,hideMode: 'offsets'
- ,baseParams: {
- action: 'source/getList'
- ,showNone: true
- ,streamsOnly: true
- }
- ,listeners: {
- select: {
- fn: this.changeSource
- ,scope: this
- }
- }
- },{
- xtype: MODx.expandHelp ? 'label' : 'hidden'
- ,forId: 'modx-plugin-static-source'
- ,id: 'modx-plugin-static-source-help'
- ,html: _('static_source_msg')
- ,cls: 'desc-under'
- ,hidden: !config.record['static']
- ,hideMode: 'offsets'
- }]
- }]
- },{
- xtype: 'panel'
- ,border: false
- ,layout: 'form'
- ,cls:'main-wrapper'
- ,labelAlign: 'top'
- ,items: [{
- xtype: 'textarea'
- ,fieldLabel: _('plugin_code')
- ,name: 'plugincode'
- ,id: 'modx-plugin-plugincode'
- ,anchor: '100%'
- ,height: 400
- ,value: config.record.plugincode || "<?php\n"
- }]
- }]
- },{
- title: _('system_events')
- ,id: 'modx-plugin-sysevents'
- ,items: [{
- html: '<p>'+_('plugin_event_msg')+'</p>'
- ,id: 'modx-plugin-sysevents-msg'
- ,xtype: 'modx-description'
- },{
- xtype: 'modx-grid-plugin-event'
- ,cls:'main-wrapper'
- ,preventRender: true
- ,plugin: config.record.id || 0
- ,listeners: {
- 'updateEvent': {fn:this.markDirty,scope:this}
- ,'rowclick': {fn:this.markDirty,scope:this}
- }
- }]
- },{
- xtype: 'modx-panel-element-properties'
- ,elementPanel: 'modx-panel-plugin'
- ,elementId: config.plugin
- ,elementType: 'modPlugin'
- ,record: config.record
- }],{
- id: 'modx-plugin-tabs'
- })]
- ,useLoadingMask: true
- ,listeners: {
- 'setup': {fn:this.setup,scope:this}
- ,'success': {fn:this.success,scope:this}
- ,'beforeSubmit': {fn:this.beforeSubmit,scope:this}
- ,'failureSubmit': {
- fn: function () {
- this.showErroredTab(['modx-plugin-form'], 'modx-plugin-tabs')
- },
- scope: this
- }
- }
- });
- MODx.panel.Plugin.superclass.constructor.call(this,config);
- var isStatic = Ext.getCmp('modx-plugin-static');
- if (isStatic) { isStatic.on('check',this.toggleStaticFile); }
- };
- Ext.extend(MODx.panel.Plugin,MODx.FormPanel,{
- initialized: false
- ,setup: function() {
- if (this.initialized) { this.clearDirty(); return true; }
- this.getForm().setValues(this.config.record);
- if (!Ext.isEmpty(this.config.record.name)) {
- var title = _('plugin')+': '+this.config.record.name;
- if (MODx.perm.tree_show_element_ids === 1) {
- title = title+ ' <small>('+this.config.record.id+')</small>';
- }
- Ext.getCmp('modx-plugin-header').getEl().update(title);
- }
- if (!Ext.isEmpty(this.config.record.properties)) {
- var d = this.config.record.properties;
- var g = Ext.getCmp('modx-grid-element-properties');
- if (g) {
- g.defaultProperties = d;
- g.getStore().loadData(d);
- }
- }
- this.fireEvent('ready',this.config.record);
- if (MODx.onLoadEditor) { MODx.onLoadEditor(this); }
- this.clearDirty();
- MODx.fireEvent('ready');
- this.initialized = true;
- }
- /**
- * Set the browser window "media source" source
- */
- ,changeSource: function() {
- var browser = Ext.getCmp('modx-plugin-static-file')
- ,source = Ext.getCmp('modx-plugin-static-source').getValue();
- browser.config.source = source;
- }
- ,beforeSubmit: function(o) {
- var g = Ext.getCmp('modx-grid-plugin-event');
- Ext.apply(o.form.baseParams,{
- events: g.encodeModified()
- ,propdata: Ext.getCmp('modx-grid-element-properties').encode()
- });
- this.cleanupEditor();
- return this.fireEvent('save',{
- values: this.getForm().getValues()
- ,stay: MODx.config.stay
- });
- }
- ,success: function(o) {
- if (MODx.request.id) Ext.getCmp('modx-grid-element-properties').save();
- Ext.getCmp('modx-grid-plugin-event').getStore().commitChanges();
- this.getForm().setValues(o.result.object);
- var t = Ext.getCmp('modx-tree-element');
- if (t) {
- var c = Ext.getCmp('modx-plugin-category').getValue();
- var u = c != '' && c != null && c != 0 ? 'n_plugin_category_'+c : 'n_type_plugin';
- var node = t.getNodeById('n_plugin_element_' + Ext.getCmp('modx-plugin-id').getValue() + '_' + o.result.object.previous_category);
- if (node) node.destroy();
- t.refreshNode(u,true);
- }
- }
- ,changeEditor: function() {
- this.cleanupEditor();
- this.on('success',function(o) {
- var id = o.result.object.id;
- var w = Ext.getCmp('modx-plugin-which-editor').getValue();
- MODx.request.a = 'element/plugin/update';
- location.href = '?'+Ext.urlEncode(MODx.request)+'&which_editor='+w+'&id='+id;
- });
- this.submit();
- }
- ,cleanupEditor: function() {
- if (MODx.onSaveEditor) {
- var fld = Ext.getCmp('modx-plugin-plugincode');
- MODx.onSaveEditor(fld);
- }
- }
- ,toggleStaticFile: function(cb) {
- var flds = ['modx-plugin-static-file','modx-plugin-static-file-help','modx-plugin-static-source','modx-plugin-static-source-help'];
- var fld,i;
- if (cb.checked) {
- for (i in flds) {
- fld = Ext.getCmp(flds[i]);
- if (fld) { fld.show(); }
- }
- } else {
- for (i in flds) {
- fld = Ext.getCmp(flds[i]);
- if (fld) { fld.hide(); }
- }
- }
- }
- });
- Ext.reg('modx-panel-plugin',MODx.panel.Plugin);
|