From 1e887757bbfe416d4cb9a209d3342de794184164 Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Wed, 16 Jul 2014 14:49:53 +1200 Subject: [PATCH] reformat whitespace --- CRM/Report/Form/Member/Detail.php | 95 +++++++++++++++---------------- 1 file changed, 47 insertions(+), 48 deletions(-) diff --git a/CRM/Report/Form/Member/Detail.php b/CRM/Report/Form/Member/Detail.php index 13070e6dee..b7ea5c0592 100644 --- a/CRM/Report/Form/Member/Detail.php +++ b/CRM/Report/Form/Member/Detail.php @@ -65,58 +65,57 @@ class CRM_Report_Form_Member_Detail extends CRM_Report_Form { } $this->_columns = array( - 'civicrm_contact' => - array( - 'dao' => 'CRM_Contact_DAO_Contact', - 'fields' => array( - 'sort_name' => array( - 'title' => ts('Contact Name'), - 'required' => TRUE, - 'default' => TRUE, - 'no_repeat' => TRUE, - ), - 'id' => array( - 'no_display' => TRUE, - 'required' => TRUE, - ), - 'first_name' => array( - 'title' => ts('First Name'), - ), - 'id' => array( - 'no_display' => TRUE, - 'required' => TRUE, - ), - 'last_name' => array( - 'title' => ts('Last Name'), - ), - 'id' => array( - 'no_display' => TRUE, - 'required' => TRUE, - ), - 'contact_type' => array( - 'title' => ts('Contact Type'), - ), - 'contact_sub_type' => array( - 'title' => ts('Contact SubType'), - ), + 'civicrm_contact' => array( + 'dao' => 'CRM_Contact_DAO_Contact', + 'fields' => array( + 'sort_name' => array( + 'title' => ts('Contact Name'), + 'required' => TRUE, + 'default' => TRUE, + 'no_repeat' => TRUE, + ), + 'id' => array( + 'no_display' => TRUE, + 'required' => TRUE, + ), + 'first_name' => array( + 'title' => ts('First Name'), + ), + 'id' => array( + 'no_display' => TRUE, + 'required' => TRUE, ), - 'filters' => array( - 'sort_name' => array( - 'title' => ts('Contact Name'), - 'operator' => 'like', - ), - 'id' => array('no_display' => TRUE), + 'last_name' => array( + 'title' => ts('Last Name'), ), - 'order_bys' => array( - 'sort_name' => array( - 'title' => ts('Last Name, First Name'), - 'default' => '1', - 'default_weight' => '0', - 'default_order' => 'ASC' - ), + 'id' => array( + 'no_display' => TRUE, + 'required' => TRUE, + ), + 'contact_type' => array( + 'title' => ts('Contact Type'), + ), + 'contact_sub_type' => array( + 'title' => ts('Contact SubType'), ), - 'grouping' => 'contact-fields', ), + 'filters' => array( + 'sort_name' => array( + 'title' => ts('Contact Name'), + 'operator' => 'like', + ), + 'id' => array('no_display' => TRUE), + ), + 'order_bys' => array( + 'sort_name' => array( + 'title' => ts('Last Name, First Name'), + 'default' => '1', + 'default_weight' => '0', + 'default_order' => 'ASC' + ), + ), + 'grouping' => 'contact-fields', + ), 'civicrm_membership' => array( 'dao' => 'CRM_Member_DAO_Membership', 'fields' => array( -- 2.25.1