Merge pull request #4971 from kurund/batch-16
[civicrm-core.git] / CRM / PCP / Form / Event.php
index 10bc646d4d6354ee79ba0b198535f581bd0fcca7..dcd130087786356b31b0cf6138faf3e3d9729465 100644 (file)
@@ -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,13 +134,14 @@ 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
    *
-   * @return mixed true or array of errors
-   * @static
+   * @return bool|array
+   *   mixed true or array of errors
    */
   public static function formRule($params, $files, $self) {
     $errors = array();
@@ -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);