INFRA-132 - CRM/Report - Misc
authorTim Otten <totten@civicrm.org>
Tue, 6 Jan 2015 22:56:57 +0000 (14:56 -0800)
committerTim Otten <totten@civicrm.org>
Tue, 6 Jan 2015 23:07:49 +0000 (15:07 -0800)
CRM/Report/Form.php
CRM/Report/Form/Grant/Statistics.php
CRM/Report/Interface.php

index be44fe3110ace05ccbc1d5c3658183ab13201f0f..b080c59d038dba9f44714b1857aef1e63edbf813 100644 (file)
@@ -1409,8 +1409,9 @@ class CRM_Report_Form extends CRM_Core_Form {
    *
    * @return null|string
    */
-  function whereClause(&$field, $op,
-                       $value, $min, $max
+  function whereClause(
+    &$field, $op,
+    $value, $min, $max
   ) {
 
     $type = CRM_Utils_Type::typeToString(CRM_Utils_Array::value('type', $field));
@@ -1594,8 +1595,9 @@ class CRM_Report_Form extends CRM_Core_Form {
    *
    * @return null|string
    */
-  function dateClause($fieldName,
-                      $relative, $from, $to, $type = NULL, $fromTime = NULL, $toTime = NULL
+  function dateClause(
+    $fieldName,
+    $relative, $from, $to, $type = NULL, $fromTime = NULL, $toTime = NULL
   ) {
     $clauses = array();
     if (in_array($relative, array_keys($this->getOperationPair(CRM_Report_Form::OP_DATE)))) {
index b6a02c2e2a9350b123f7bbe43271cef47a2bd33e..700c782ce180d4b438112663b43c6777b40c1f54 100644 (file)
@@ -533,8 +533,9 @@ SELECT COUNT({$this->_aliases['civicrm_grant']}.id) as count ,
    * @param $awardedGrantsAmount
    * @param bool $customData
    */
-  static function getStatistics(&$grantStatistics, $fieldValue, $values,
-                                $awardedGrants, $awardedGrantsAmount, $customData = FALSE
+  static function getStatistics(
+    &$grantStatistics, $fieldValue, $values,
+    $awardedGrants, $awardedGrantsAmount, $customData = FALSE
   ) {
     if (!$awardedGrantsAmount) {
       return;
index 130dcc4ca0a38f3fe86f76ae84dbdb9459c51686..c5e4d4c8ed5c7d4964e10997afb9ca1b7a42e7a0 100644 (file)
@@ -75,7 +75,8 @@ interface CRM_Report_Interface {
    * Retrieve all the values that match the current input parameters
    * Used by the selector
    */
-  function all($offset = 0, $rowcount = 0, $sort = NULL,
+  function all(
+    $offset = 0, $rowcount = 0, $sort = NULL,
     $includeContactIDs = FALSE
   );