Ejemplo n.º 1
0
 /**
  * Build the form object.
  */
 public function buildQuickForm()
 {
     $this->setPageTitle($this->_isTagSet ? ts('Tag Set') : ts('Tag'));
     if ($this->_action == CRM_Core_Action::DELETE) {
         if ($this->_id && ($tag = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Tag', $this->_id, 'name', 'parent_id'))) {
             $url = CRM_Utils_System::url('civicrm/admin/tag', "reset=1");
             CRM_Core_Error::statusBounce(ts("This tag cannot be deleted. You must delete all its child tags ('%1', etc) prior to deleting this tag.", array(1 => $tag)), $url);
         }
         if ($this->_values['is_reserved'] == 1 && !CRM_Core_Permission::check('administer reserved tags')) {
             CRM_Core_Error::statusBounce(ts("You do not have sufficient permission to delete this reserved tag."));
         }
     } else {
         $this->_isTagSet = CRM_Utils_Request::retrieve('tagset', 'Positive', $this);
         if (!$this->_isTagSet && $this->_id && CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Tag', $this->_id, 'is_tagset')) {
             $this->_isTagSet = TRUE;
         }
         $allTag = array('' => ts('- select -')) + CRM_Core_BAO_Tag::getTagsNotInTagset();
         if ($this->_id) {
             unset($allTag[$this->_id]);
         }
         if (!$this->_isTagSet) {
             $this->add('select', 'parent_id', ts('Parent Tag'), $allTag, FALSE, array('class' => 'crm-select2'));
             // Tagsets are not selectable by definition so only include the selectable field if NOT a tagset.
             $selectable = $this->add('checkbox', 'is_selectable', ts('Selectable?'));
             // Selectable should be checked by default when creating a new tag
             if ($this->_action == CRM_Core_Action::ADD) {
                 $selectable->setValue(1);
             }
         }
         $this->assign('isTagSet', $this->_isTagSet);
         $this->applyFilter('__ALL__', 'trim');
         $this->add('text', 'name', ts('Name'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_Tag', 'name'), TRUE);
         $this->addRule('name', ts('Name already exists in Database.'), 'objectExists', array('CRM_Core_DAO_Tag', $this->_id));
         $this->add('text', 'description', ts('Description'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_Tag', 'description'));
         $isReserved = $this->add('checkbox', 'is_reserved', ts('Reserved?'));
         $usedFor = $this->addSelect('used_for', array('multiple' => TRUE, 'option_url' => NULL));
         if ($this->_id && CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Tag', $this->_id, 'parent_id')) {
             $usedFor->freeze();
         }
         $adminTagset = TRUE;
         if (!CRM_Core_Permission::check('administer Tagsets')) {
             $adminTagset = FALSE;
         }
         $this->assign('adminTagset', $adminTagset);
         $adminReservedTags = TRUE;
         if (!CRM_Core_Permission::check('administer reserved tags')) {
             $isReserved->freeze();
             $adminReservedTags = FALSE;
         }
         $this->assign('adminReservedTags', $adminReservedTags);
     }
     parent::buildQuickForm();
 }
Ejemplo n.º 2
0
 /**
  * Function to build the form
  *
  * @return None
  * @access public
  */
 public function buildQuickForm()
 {
     if ($this->_action == CRM_Core_Action::DELETE) {
         if ($this->_id && ($tag = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Tag', $this->_id, 'name', 'parent_id'))) {
             CRM_Core_Session::setStatus(ts("This tag cannot be deleted! You must Delete all its child tags ('%1', etc) prior to deleting this tag.", array(1 => $tag)));
             $url = CRM_Utils_System::url('civicrm/admin/tag', "reset=1");
             CRM_Utils_System::redirect($url);
             return true;
         } else {
             $this->addButtons(array(array('type' => 'next', 'name' => ts('Delete'), 'isDefault' => true), array('type' => 'cancel', 'name' => ts('Cancel'))));
         }
     } else {
         $this->_isTagSet = CRM_Utils_Request::retrieve('tagset', 'Positive', $this);
         if (!$this->_isTagSet && $this->_id && CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Tag', $this->_id, 'is_tagset')) {
             $this->_isTagSet = true;
         }
         require_once 'CRM/Core/BAO/Tag.php';
         $allTag = array('' => '- ' . ts('select') . ' -') + CRM_Core_BAO_Tag::getTagsNotInTagset();
         if ($this->_id) {
             unset($allTag[$this->_id]);
         }
         if (!$this->_isTagSet) {
             $this->add('select', 'parent_id', ts('Parent Tag'), $allTag);
         }
         $this->assign('isTagSet', $this->_isTagSet);
         $this->applyFilter('__ALL__', 'trim');
         $this->add('text', 'name', ts('Name'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_Tag', 'name'), true);
         $this->addRule('name', ts('Name already exists in Database.'), 'objectExists', array('CRM_Core_DAO_Tag', $this->_id));
         $this->add('text', 'description', ts('Description'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_Tag', 'description'));
         //@lobo haven't a clue why the checkbox isn't displayed (it should be checked by default
         $this->add('checkbox', 'is_selectable', ts("If it's a tag or a category"));
         $isReserved = $this->add('checkbox', 'is_reserved', ts('Reserved?'));
         require_once 'CRM/Core/OptionGroup.php';
         $usedFor = $this->add('select', 'used_for', ts('Used For'), CRM_Core_OptionGroup::values('tag_used_for'));
         $usedFor->setMultiple(true);
         if ($this->_id && CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Tag', $this->_id, 'parent_id')) {
             $usedFor->freeze();
         }
         $adminTagset = true;
         if (!CRM_Core_Permission::check('administer Tagsets')) {
             $adminTagset = false;
         }
         $this->assign('adminTagset', $adminTagset);
         $adminReservedTags = true;
         if (!CRM_Core_Permission::check('administer reserved tags')) {
             $isReserved->freeze();
             $adminReservedTags = false;
         }
         $this->assign('adminReservedTags', $adminReservedTags);
         parent::buildQuickForm();
     }
 }