X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FPCP%2FForm%2FEvent.php;h=2b02239dee8e54b4531166f64874df7b1dbcb8a8;hb=353ffa53c335f7b94ebaddc701e46f2bb30c7048;hp=10bc646d4d6354ee79ba0b198535f581bd0fcca7;hpb=e9aca61e8b08d5ae372621c4397108b8f2ec28ba;p=civicrm-core.git diff --git a/CRM/PCP/Form/Event.php b/CRM/PCP/Form/Event.php index 10bc646d4d..2b02239dee 100644 --- a/CRM/PCP/Form/Event.php +++ b/CRM/PCP/Form/Event.php @@ -62,8 +62,8 @@ class CRM_PCP_Form_Event extends CRM_Event_Form_ManageEvent { $defaults = array(); if (isset($this->_id)) { - $title = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $this->_id, 'title'); - CRM_Utils_System::setTitle(ts('Personal Campaign Page Settings (%1)', array(1 => $title))); + $title = CRM_Core_DAO::getFieldValue('CRM_Event_DAO_Event', $this->_id, 'title'); + CRM_Utils_System::setTitle(ts('Personal Campaign Page Settings (%1)', array(1 => $title))); $params = array('entity_id' => $this->_id, 'entity_table' => 'civicrm_event'); CRM_Core_DAO::commonRetrieve('CRM_PCP_DAO_PCPBlock', $params, $defaults); @@ -80,7 +80,8 @@ class CRM_PCP_Form_Event extends CRM_Event_Form_ManageEvent { $defaults['link_text'] = ts('Promote this event with a personal campaign page'); if ($this->_id && - $ccReceipt = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_ContributionPage', $this->_id, 'cc_receipt')) { + $ccReceipt = CRM_Core_DAO::getFieldValue('CRM_Contribute_DAO_ContributionPage', $this->_id, 'cc_receipt') + ) { $defaults['notify_email'] = $ccReceipt; } } @@ -105,7 +106,8 @@ class CRM_PCP_Form_Event extends CRM_Event_Form_ManageEvent { $this->add('select', 'target_entity_id', ts('Online Contribution Page'), array( - '' => ts('- select -')) + + '' => ts('- select -') + ) + CRM_Contribute_PseudoConstant::contributionPage() ); @@ -119,7 +121,9 @@ class CRM_PCP_Form_Event extends CRM_Event_Form_ManageEvent { if (!empty($pcpBlock->id) && CRM_PCP_BAO_PCP::getPcpBlockInUse($pcpBlock->id)) { foreach (array( - 'target_entity_type', 'target_entity_id') as $element_name) { + 'target_entity_type', + 'target_entity_id' + ) as $element_name) { $element = $this->getElement($element_name); $element->freeze(); } @@ -130,7 +134,8 @@ class CRM_PCP_Form_Event extends CRM_Event_Form_ManageEvent { /** * Validation * - * @param array $params (ref.) an assoc array of name/value pairs + * @param array $params + * (ref.) an assoc array of name/value pairs. * * @param $files * @param $self @@ -191,9 +196,9 @@ class CRM_PCP_Form_Event extends CRM_Event_Form_ManageEvent { $params['target_entity_id'] = CRM_Utils_Array::value('target_entity_id', $params, $this->_id); } - $dao = new CRM_PCP_DAO_PCPBlock(); + $dao = new CRM_PCP_DAO_PCPBlock(); $dao->entity_table = $params['entity_table']; - $dao->entity_id = $this->_id; + $dao->entity_id = $this->_id; $dao->find(TRUE); $params['id'] = $dao->id; $params['is_active'] = CRM_Utils_Array::value('pcp_active', $params, FALSE);