| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- VersionX.panel.PluginsDetail = function(config) {
- config = config || {};
- config.id = config.id || 'versionx-panel-pluginsdetail';
- Ext.apply(config,{
- border: false,
- layout: 'form',
- items: [{
- html: '<p>'+_('versionx.plugins.detail.text')+'</p>',
- border: false,
- bodyCssClass: 'panel-desc'
- },{
- layout: 'form',
- cls: 'main-wrapper',
- items: [{
- layout: 'hbox',
- border: false,
- items: [{
- xtype: 'versionx-combo-pluginversions',
- emptyText: _('versionx.compare_to'),
- labelStyle: 'padding: 7px 0 0 5px;',
- width: 300,
- name: 'compare_to',
- baseParams: {
- content_id: (VersionX.record) ? VersionX.record['content_id'] : 0,
- current: (VersionX.record) ? VersionX.record['version_id'] : 0,
- action: 'mgr/plugins/get_versions'
- },
- listeners: {
- 'select': this.compareVersion
- }
- },{html: ' ', border: false, bodyStyle: 'margin-left: 10px;'},{
- xtype: 'button',
- cls: 'primary-button',
- text: _('versionx.plugins.revert.options'),
- handler: (VersionX.record && VersionX.cmrecord) ? Ext.emptyFn : function() {
- this.revertVersion((VersionX.record) ? VersionX.record['version_id'] : 0);
- },
- scope: this,
- menu: (VersionX.record && VersionX.cmrecord) ?
- [{
- text: _('versionx.plugins.revert',{id: VersionX.record['version_id']}),
- handler: function() {
- this.revertVersion((VersionX.record) ? VersionX.record['version_id'] : 0);
- },
- scope: this
- },{
- text: _('versionx.plugins.revert',{id: VersionX.cmrecord['version_id']}),
- handler: function() {
- this.revertVersion((VersionX.cmrecord) ? VersionX.cmrecord['version_id'] : 0);
- },
- scope: this
- }] : undefined
- }]
- },{
- xtype: 'panel',
- bodyStyle: 'height: 12px',
- border: false
- },{
- xtype: 'modx-tabs',
- bodyStyle: 'padding: 15px;',
- width: '98%',
- border: true,
- defaults: {
- border: false,
- autoHeight: true,
- defaults: {
- border: false
- }
- },
- items: [{
- title: _('versionx.common.version-details'),
- items: [{
- id: 'versionx-panel-pluginsdetail-versioninfo',
- xtype: 'versionx-panel-common-detailpanel',
- vxRecord: config.vxRecord,
- vxRecordCmp: config.vxRecordCmp ? config.vxRecordCmp : undefined,
- vxFieldMap: [
- { key: 'version_id', lexicon:'versionx.version_id' },
- { key: 'user', lexicon:'user' },
- { key: 'saved', lexicon:'versionx.saved' },
- { key: 'mode', lexicon:'versionx.mode' }
- ]
- }]
- },{
- title: _('versionx.common.fields'),
- items: [{
- id: 'versionx-panel-pluginsdetail-plugin-fields',
- xtype: 'versionx-panel-common-detailpanel',
- vxRecord: config.vxRecord,
- vxRecordCmp: config.vxRecordCmp ? config.vxRecordCmp : undefined,
- vxFieldMap: [
- { key: 'name', lexicon:'name' },
- { key: 'description', lexicon:'description' },
- { key: 'category', lexicon:'category' }
- ]
- }]
- },{
- title: _('versionx.common.content'),
- items: [{
- id: 'versionx-panel-pluginsdetail-content',
- xtype: 'versionx-panel-common-contentpanel',
- border: false,
- vxRecord: config.vxRecord,
- vxRecordCmp: config.vxRecordCmp ? config.vxRecordCmp : undefined,
- vxContentField: 'plugincode'
- }]
- }/*,{
- title: _('versionx.common.properties'),
- tabTip: _('versionx.common.properties.off'),
- items: [],
- disabled: true
- }*/],
- stateful: true,
- stateId: config.id,
- stateEvents: ['tabchange'],
- getState: function() {
- return { activeTab:this.items.indexOf(this.getActiveTab()) };
- }
- }]
- }],
- listeners: {
- }
- });
- VersionX.panel.PluginsDetail.superclass.constructor.call(this,config);
- };
- Ext.extend(VersionX.panel.PluginsDetail,MODx.FormPanel,{
- compareVersion: function (tf) {
- var cmid = tf.getValue();
- var backTo = (MODx.request.backTo) ? '&backTo='+MODx.request.backTo : '';
- MODx.loadPage('?namespace=versionx&a=plugin&vid='+MODx.request['vid']+'&cmid='+cmid+backTo)
- },
- revertVersion: function(version) {
- if (version < 1) { MODx.alert(_('error'),'Version not properly defined: '+version); }
- MODx.msg.confirm({
- title: _('versionx.plugins.revert.confirm'),
- text: _('versionx.plugins.revert.confirm.text',{id: version}),
- url: VersionX.config.connector_url,
- params: {
- version_id: version,
- content_id: VersionX.record.content_id,
- action: 'mgr/plugins/revert'
- },
- listeners: {
- success: {fn: function() {
- MODx.msg.status({
- message: _('versionx.plugins.reverted'),
- delay: 4
- });
- }, scope: this }
- }
- });
- }
- });
- Ext.reg('versionx-panel-pluginsdetail',VersionX.panel.PluginsDetail);
|