| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267 |
- /**
- * Loads the profile page
- *
- * @class MODx.page.Profile
- * @extends MODx.Component
- * @param {Object} config An object of configuration properties
- * @xtype modx-page-profile
- */
- MODx.page.Profile = function(config) {
- config = config || {};
- Ext.applyIf(config,{
- components: [{
- xtype: 'modx-panel-profile'
- ,user: config.user
- }]
- });
- MODx.page.Profile.superclass.constructor.call(this,config);
- };
- Ext.extend(MODx.page.Profile,MODx.Component);
- Ext.reg('modx-page-profile',MODx.page.Profile);
- MODx.panel.Profile = function(config) {
- config = config || {};
- Ext.applyIf(config,{
- id: 'modx-panel-profile'
- ,url: MODx.config.connector_url
- ,baseParams: {
- action: 'security/profile'
- }
- ,layout: 'anchor'
- ,cls: 'container'
- ,bodyStyle: 'background: none;'
- ,border: false
- ,items: [{
- html: _('profile')
- ,id: 'modx-profile-header'
- ,xtype: 'modx-header'
- },this.getTabs(config)]
- });
- MODx.panel.Profile.superclass.constructor.call(this,config);
- };
- Ext.extend(MODx.panel.Profile,MODx.Panel, {
- getTabs: function(config) {
- var items = [{
- xtype: 'modx-panel-profile-update'
- ,id: 'modx-panel-profile-update'
- ,user: config.user
- ,preventRender: true
- }];
- if (MODx.perm.change_password) {
- items.push({
- xtype: 'modx-panel-profile-password-change'
- ,id: 'modx-panel-profile-password-change'
- ,user: config.user
- ,preventRender: true
- });
- }
- if (MODx.perm.view_document) {
- items.push({
- title: _('profile_recent_resources')
- ,bodyStyle: 'padding: 15px;'
- ,id: 'modx-profile-recent-docs'
- ,autoHeight: true
- ,layout: 'anchor'
- ,items: [{
- html: '<p>'+_('profile_recent_resources_desc')+'</p><br />'
- ,id: 'modx-profile-recent-docs-msg'
- ,border: false
- },{
- xtype: 'modx-grid-user-recent-resource'
- ,user: config.user
- ,preventRender: true
- }]
- });
- }
- return MODx.getPageStructure(items);
- }
- });
- Ext.reg('modx-panel-profile',MODx.panel.Profile);
- /**
- * The information panel for the profile
- *
- * @class MODx.panel.UpdateProfile
- * @extends MODx.FormPanel
- * @param {Object} config An object of config properties
- * @xtype: panel-profile-update
- */
- MODx.panel.UpdateProfile = function(config) {
- config = config || {};
- Ext.applyIf(config,{
- title: _('general_information')
- ,id: 'modx-panel-profile-update'
- ,url: MODx.config.connector_url
- ,baseParams: {
- action: 'security/profile/update'
- ,id: config.user
- }
- ,layout: 'form'
- ,buttonAlign: 'right'
- ,cls: 'container form-with-labels'
- ,labelAlign: 'top'
- ,defaults: {
- border: false
- ,msgTarget: 'under'
- ,anchor: '100%'
- }
- ,labelWidth: 150
- ,items: [{
- xtype: 'textfield'
- ,fieldLabel: _('user_full_name')
- ,name: 'fullname'
- ,maxLength: 255
- ,allowBlank: false
- },{
- xtype: 'textfield'
- ,fieldLabel: _('email')
- ,name: 'email'
- ,vtype: 'email'
- ,allowBlank: false
- },{
- fieldLabel: _('user_photo')
- ,name: 'photo'
- ,xtype: 'modx-combo-browser'
- ,hideFiles: true
- ,source: MODx.config['photo_profile_source'] || MODx.config.default_media_source
- ,hideSourceCombo: true
- },{
- xtype: 'textfield'
- ,fieldLabel: _('user_phone')
- ,name: 'phone'
- ,anchor: '50%'
- },{
- xtype: 'textfield'
- ,fieldLabel: _('user_mobile')
- ,name: 'mobilephone'
- ,anchor: '50%'
- },{
- xtype: 'textfield'
- ,fieldLabel: _('user_fax')
- ,name: 'fax'
- ,anchor: '50%'
- },{
- xtype: 'datefield'
- ,fieldLabel: _('user_dob')
- ,name: 'dob'
- ,anchor: '50%'
- },{
- xtype: 'textfield'
- ,fieldLabel: _('user_state')
- ,name: 'state'
- ,maxLength: 50
- ,anchor: '50%'
- },{
- xtype: 'textfield'
- ,fieldLabel: _('user_zip')
- ,name: 'zip'
- ,maxLength: 20
- ,anchor: '50%'
- }]
- // TODO: this button should be in a actionbar like any other panel
- ,buttons: [{
- text: _('save')
- ,scope: this
- ,handler: this.submit
- ,cls:'primary-button'
- }]
- ,listeners: {
- 'setup': {fn:this.setup,scope:this}
- }
- });
- MODx.panel.UpdateProfile.superclass.constructor.call(this,config);
- };
- Ext.extend(MODx.panel.UpdateProfile,MODx.FormPanel,{
- setup: function() {
- MODx.Ajax.request({
- url: MODx.config.connector_url
- ,params: {
- action: 'security/profile/get'
- ,id: this.config.user
- }
- ,listeners: {
- 'success': {fn:function(r) {
- this.getForm().setValues(r.object);
- },scope:this}
- }
- });
- }
- });
- Ext.reg('modx-panel-profile-update',MODx.panel.UpdateProfile);
- /**
- * A panel for changing the user password
- *
- * @class MODx.panel.ChangeProfilePassword
- * @extends MODx.FormPanel
- * @param {Object} config An object of config properties
- * @xtype modx-panel-profile-password-change
- */
- MODx.panel.ChangeProfilePassword = function(config) {
- config = config || {};
- Ext.applyIf(config,{
- title: _('reset_password')
- ,url: MODx.config.connector_url
- ,baseParams: {
- action: 'security/profile/changepassword'
- ,id: config.user
- }
- // ,frame: true
- ,layout: 'form'
- ,buttonAlign: 'right'
- ,labelAlign: 'top'
- ,cls: 'container form-with-labels'
- // ,cls: 'main-wrapper'
- ,defaults: { border: false ,msgTarget: 'under' }
- ,labelWidth: 150
- ,items: [{
- xtype: 'textfield'
- ,fieldLabel: _('password_old')
- ,name: 'password_old'
- ,inputType: 'password'
- ,maxLength: 255
- ,anchor: '100%'
- },{
- xtype: 'textfield'
- ,fieldLabel: _('change_password_new')
- ,name: 'password_new'
- ,inputType: 'password'
- ,maxLength: 255
- ,anchor: '100%'
- },{
- xtype: 'textfield'
- ,fieldLabel: _('change_password_confirm')
- ,name: 'password_confirm'
- ,id: 'modx-password-confirm'
- ,inputType: 'password'
- ,maxLength: 255
- ,anchor: '100%'
- },{
- xtype: 'xcheckbox'
- ,boxLabel: _('password_method_screen')
- ,name: 'password_method_screen'
- ,id: 'modx-password-method-screen'
- ,inputValue: true
- ,hideLabel: true
- ,checked: true
- }]
- // TODO: this button should be in a actionbar like any other panel
- ,buttons: [{
- text: _('save')
- ,id: 'modx-abtn-save'
- ,cls: 'primary-button'
- ,scope: this
- ,handler: this.submit
- }]
- ,listeners: {
- 'success': {fn:this.success,scope:this}
- }
- });
- MODx.panel.ChangeProfilePassword.superclass.constructor.call(this,config);
- };
- Ext.extend(MODx.panel.ChangeProfilePassword,MODx.FormPanel,{
- success: function(o) {
- MODx.msg.alert(_('success'),o.result.message);
- }
- });
- Ext.reg('modx-panel-profile-password-change',MODx.panel.ChangeProfilePassword);
|