public function init() { $resources_table = new Admin_Model_Resources(); foreach ($resources_table->getAll() as $resource) { // select permissions for this resource for current role_id, but only where action != '' $permissions = new Admin_Model_Permissions(); $all_permissions = $permissions->getByRoleAndResourceSpecial($this->getRoleid(), $resource->id); // Set allowed and denied value for text fild $allowed = $denied = ''; foreach ($all_permissions as $perm) { if ($perm->is_allowed == 't') { $allowed .= $perm->action . ';'; } else { $denied .= $perm->action . ';'; } } $allowed = trim($allowed, ';'); $denied = trim($denied, ';'); //Set elements $parent = new Zend_Form_Element_Select((string) $resource->id); $parent->setLabel('Resource ')->addMultiOption((string) $resource->id, $resource->name)->setAttrib('disabled', 'disabled'); $allow = new Zend_Form_Element_Text($resource->id . '_allow'); $allow->setLabel('Allow ')->setValue($allowed); $deny = new Zend_Form_Element_Text($resource->id . '_deny'); $deny->setLabel('Deny ')->setValue($denied); $this->addElement($parent); $this->addElement($allow); $this->addElement($deny); } $submit = new Zend_Form_Element_Submit('save'); $submit->setAttrib('class', 'btn btn-primary'); $submit->setLabel('Confirm'); $this->setAction('')->setMethod('post')->addElement($submit); }
public function init() { $menu_items_model = new Admin_Model_MenuItems(); $name = new Zend_Form_Element_Text('name'); $name->setLabel('Usergroup name')->setRequired(true)->setAttrib("class", "form-control")->setAttrib("style", "width:200px"); $menu_items = new Zend_Form_Element_Multiselect('admin_menu_item_id'); $menu_items->addValidator(new Zend_Validate_Digits(), true); $menu_items->setLabel('Menu Items: '); $menu_items->setAttrib("class", "select2"); $menu_items->setAttrib("data-placeholder", "Choose..."); $menu_items->setAttrib("style", "width:200px"); $menu_items->addMultiOptions($menu_items_model->getForDropDown()); $permit = new Zend_Form_Element_MultiCheckbox('permit'); $permit->setLabel('Available resources '); $resources_table = new Admin_Model_Resources(); foreach ($resources_table->getAll() as $resource) { $permit->addMultiOption((string) $resource->id, ' ' . $resource->name); } $cancel = new Zend_Form_Element_Button('cancel'); $cancel->setLabel('Cancel'); $cancel->setAttrib('class', 'btn btn-gold')->setAttrib('style', 'color:black'); $cancel->setAttrib("onClick", "window.location = window.location.origin+'/admin/admin-usersgroups/'"); $submit = new Zend_Form_Element_Submit('save'); $submit->setAttrib('class', 'btn btn-primary'); $submit->setLabel('Confirm'); $this->setAction('')->setMethod('post')->addElement($name)->addElement($menu_items)->addElement($permit)->addElement($cancel)->addElement($submit); }
private function _initResources() { $resources_table = new Admin_Model_Resources(); $resources = $resources_table->getAll(); foreach ($resources as $resource) { $this->acl->addResource(new Zend_Acl_Resource($resource->id)); } }