Ejemplo n.º 1
0
 function testDeletePCP()
 {
     $pcp = CRM_Core_DAO::createTestObject('CRM_PCP_DAO_PCP');
     $pcpId = $pcp->id;
     $del = CRM_PCP_BAO_PCP::deleteById($pcpId);
     $this->assertDBRowNotExist('CRM_PCP_DAO_PCP', $pcpId, 'Database check PCP deleted successfully.');
 }
function civicrm_api3_pcpteams_delete($params)
{
    //check permission to delete
    $permParams = array('pcp_id' => $params['id']);
    if (!_civicrm_pcpteams_permission_check($permParams, CRM_Core_Permission::EDIT)) {
        return civicrm_api3_create_error('insufficient permission to delete this record');
    }
    $result = array();
    CRM_PCP_BAO_PCP::deleteById($params['id']);
    return civicrm_api3_create_success($result, $params);
}
Ejemplo n.º 3
0
 /**
  * Process the form
  *
  * @param null
  *
  * @return void
  * @access public
  */
 public function postProcess()
 {
     if ($this->_action & CRM_Core_Action::DELETE) {
         CRM_PCP_BAO_PCP::deleteById($this->_id);
         CRM_Core_Session::setStatus(ts("The Campaign Page '%1' has been deleted.", array(1 => $this->_title)), ts('Page Deleted'), 'success');
     } else {
         $params = $this->controller->exportValues($this->_name);
         $parent = $this->controller->getParent();
         if (!empty($params)) {
             $fields = array('status_id', 'page_id');
             foreach ($fields as $field) {
                 if (isset($params[$field]) && !CRM_Utils_System::isNull($params[$field])) {
                     $parent->set($field, $params[$field]);
                 } else {
                     $parent->set($field, NULL);
                 }
             }
         }
     }
 }