30 lines
625 B
JavaScript
30 lines
625 B
JavaScript
|
|
Hedera.Users = new Class({
|
|
Extends: Hedera.Form
|
|
|
|
,onAccessLogClick: function(button, form) {
|
|
this.hash.set({
|
|
'form': 'admin/access-log'
|
|
,'user': form.get('id')
|
|
});
|
|
}
|
|
|
|
,rendererFunc: function(scope, form) {
|
|
var isEnabled = form.get('active')
|
|
scope.$('disabled').style.display = isEnabled ?
|
|
'none' : 'block';
|
|
scope.$('impersonate').node.style.display = isEnabled ?
|
|
'block' : 'none';
|
|
}
|
|
|
|
,onChangeUserClick: function(button, form) {
|
|
this.gui.supplantUser(form.get('name'),
|
|
this.onUserSupplant.bind(this));
|
|
}
|
|
|
|
,onUserSupplant: function() {
|
|
this.hash.set({form: 'ecomerce/orders'});
|
|
}
|
|
});
|
|
|