Пример #1
0
 /**
  * Function to test setIsActive()
  */
 function testSetIsActive()
 {
     $customGrouptitle = 'My Custom Group';
     $groupParams = array('title' => $customGrouptitle, 'name' => 'my_custom_group', 'style' => 'Tab', 'extends' => 'Individual', 'is_active' => 0);
     $customGroup = Custom::createGroup($groupParams);
     $customGroupId = $customGroup->id;
     require_once 'CRM/Core/BAO/CustomGroup.php';
     //update is_active
     $result = CRM_Core_BAO_CustomGroup::setIsActive($customGroupId, true);
     //check for object update
     $this->assertEquals(true, $result);
     //check for is_active
     $this->assertDBCompareValue('CRM_Core_DAO_CustomGroup', $customGroupId, 'is_active', 'id', true, 'Database check for custom group is_active field.');
     //cleanup DB by deleting customGroup
     Custom::deleteGroup($customGroup);
 }
Пример #2
0
 /**
  * Test setIsActive()
  */
 public function testSetIsActive()
 {
     $customGroupTitle = 'My Custom Group';
     $groupParams = array('title' => $customGroupTitle, 'name' => 'my_custom_group', 'style' => 'Tab', 'extends' => 'Individual', 'is_active' => 0);
     $customGroup = $this->customGroupCreate($groupParams);
     $customGroupId = $customGroup['id'];
     //update is_active
     $result = CRM_Core_BAO_CustomGroup::setIsActive($customGroupId, TRUE);
     //check for object update
     $this->assertEquals(TRUE, $result);
     //check for is_active
     $this->assertDBCompareValue('CRM_Core_DAO_CustomGroup', $customGroupId, 'is_active', 'id', 1, 'Database check for custom group is_active field.');
     $this->customGroupDelete($customGroup['id']);
 }
Пример #3
0
 /**
  * Run the page.
  *
  * This method is called after the page is created. It checks for the  
  * type of action and executes that action.
  * Finally it calls the parent's run method.
  * 
  * @param null
  * 
  * @return void
  * @access public
  *
  */
 function run()
 {
     // get the requested action
     $action = CRM_Utils_Request::retrieve('action', $this, false, 'browse');
     // default to 'browse'
     if ($action & CRM_CORE_ACTION_DELETE) {
         $session =& CRM_Core_Session::singleton();
         $session->pushUserContext(CRM_Utils_System::url('civicrm/admin/custom/group/', 'action=browse'));
         $controller =& new CRM_Core_Controller_Simple('CRM_Custom_Form_DeleteGroup', "Delete Cutom Group", $mode);
         $id = CRM_Utils_Request::retrieve('id', $this, false, 0);
         $controller->set('id', $id);
         $controller->setEmbedded(true);
         $controller->process();
         $controller->run();
     }
     // assign vars to templates
     $this->assign('action', $action);
     $id = CRM_Utils_Request::retrieve('id', $this, false, 0);
     // what action to take ?
     if ($action & (CRM_CORE_ACTION_UPDATE | CRM_CORE_ACTION_ADD)) {
         $this->edit($id, $action);
     } else {
         if ($action & CRM_CORE_ACTION_PREVIEW) {
             $this->preview($id);
         } else {
             require_once 'CRM/Core/BAO/CustomGroup.php';
             require_once 'CRM/Core/BAO/UFField.php';
             // if action is enable or disable to the needful.
             if ($action & CRM_CORE_ACTION_DISABLE) {
                 CRM_Core_BAO_CustomGroup::setIsActive($id, 0);
                 CRM_Core_BAO_UFField::setUFFieldStatus($id, 0);
             } else {
                 if ($action & CRM_CORE_ACTION_ENABLE) {
                     CRM_Core_BAO_CustomGroup::setIsActive($id, 1);
                     //CRM_Core_BAO_UFField::setUFFieldStatus($id, 1);
                 }
             }
             // finally browse the custom groups
             $this->browse();
         }
     }
     // parent run
     parent::run();
 }