From 505f54396aef89421509310f5aa886c222ffefc2 Mon Sep 17 00:00:00 2001 From: yashodha Date: Wed, 23 Dec 2015 09:54:17 +0530 Subject: [PATCH] format fixes --- CRM/Event/BAO/Query.php | 54 ++++++++++++++++++++++++++--------------- 1 file changed, 34 insertions(+), 20 deletions(-) diff --git a/CRM/Event/BAO/Query.php b/CRM/Event/BAO/Query.php index aea26f8bed..556b39c8d2 100644 --- a/CRM/Event/BAO/Query.php +++ b/CRM/Event/BAO/Query.php @@ -359,15 +359,16 @@ class CRM_Event_BAO_Query { $qillName = $name; if (in_array($name, array( - 'participant_status_id', - 'participant_source', - 'participant_id', - 'participant_contact_id', - 'participant_fee_amount', - 'participant_fee_level', - 'participant_is_pay_later', - 'participant_campaign_id', - ))) { + 'participant_status_id', + 'participant_source', + 'participant_id', + 'participant_contact_id', + 'participant_fee_amount', + 'participant_fee_level', + 'participant_is_pay_later', + 'participant_campaign_id', + )) + ) { $name = str_replace('participant_', '', $name); if ($name == 'is_pay_later') { $qillName = $name; @@ -379,10 +380,10 @@ class CRM_Event_BAO_Query { $dataType = !empty($fields[$qillName]['type']) ? CRM_Utils_Type::typeToString($fields[$qillName]['type']) : 'String'; $tableName = empty($tableName) ? 'civicrm_participant' : $tableName; - if (is_array($value) && in_array(key($value), CRM_Core_DAO::acceptedSQLOperators(), TRUE)) { - $op = key($value); + if (is_array($value) && in_array(key($value), CRM_Core_DAO::acceptedSQLOperators(), TRUE)) { + $op = key($value); $value = $value[$op]; - } + } $query->_where[$grouping][] = CRM_Contact_BAO_Query::buildClause("$tableName.$name", $op, $value, $dataType); list($op, $value) = CRM_Contact_BAO_Query::buildQillForFieldValue('CRM_Event_DAO_Participant', $name, $value, $op); @@ -429,11 +430,12 @@ class CRM_Event_BAO_Query { case 'event_title': $qillName = $name; if (in_array($name, array( - 'event_id', - 'event_title', - 'event_is_public', - ) - )) { + 'event_id', + 'event_title', + 'event_is_public', + ) + ) + ) { $name = str_replace('event_', '', $name); } $dataType = !empty($fields[$qillName]['type']) ? CRM_Utils_Type::typeToString($fields[$qillName]['type']) : 'String'; @@ -510,7 +512,7 @@ class CRM_Event_BAO_Query { * * @return array|null */ - public static function defaultReturnProperties( + public static function defaultReturnProperties( $mode, $includeCustomFields = TRUE ) { @@ -593,11 +595,23 @@ class CRM_Event_BAO_Query { $form->addElement('checkbox', "event_include_repeating_events", NULL, ts('Include participants from all events in the %1 series', array(1 => '%1'))); $form->addSelect('participant_status_id', - array('entity' => 'participant', 'label' => ts('Participant Status'), 'multiple' => 'multiple', 'option_url' => NULL, 'placeholder' => ts('- any -')) + array( + 'entity' => 'participant', + 'label' => ts('Participant Status'), + 'multiple' => 'multiple', + 'option_url' => NULL, + 'placeholder' => ts('- any -') + ) ); $form->addSelect('participant_role_id', - array('entity' => 'participant', 'label' => ts('Participant Role'), 'multiple' => 'multiple', 'option_url' => NULL, 'placeholder' => ts('- any -')) + array( + 'entity' => 'participant', + 'label' => ts('Participant Role'), + 'multiple' => 'multiple', + 'option_url' => NULL, + 'placeholder' => ts('- any -') + ) ); $form->addYesNo('participant_test', ts('Participant is a Test?'), TRUE); -- 2.25.1