INFRA-132 - CRM/Utils - Misc
authorTim Otten <totten@civicrm.org>
Tue, 6 Jan 2015 22:56:58 +0000 (14:56 -0800)
committerTim Otten <totten@civicrm.org>
Tue, 6 Jan 2015 23:07:49 +0000 (15:07 -0800)
17 files changed:
CRM/Utils/Hook.php
CRM/Utils/Hook/DrupalBase.php
CRM/Utils/Hook/Joomla.php
CRM/Utils/Hook/Soap.php
CRM/Utils/Hook/UnitTests.php
CRM/Utils/Migrate/ExportJSON.php
CRM/Utils/PDF/Utils.php
CRM/Utils/REST.php
CRM/Utils/Recent.php
CRM/Utils/String.php
CRM/Utils/System.php
CRM/Utils/System/Drupal8.php
CRM/Utils/System/DrupalBase.php
CRM/Utils/System/Joomla.php
CRM/Utils/System/UnitTests.php
CRM/Utils/Token.php
CRM/Utils/Weight.php

index a8cf536cda448c0b5e65aaa2ecf481f2eb8a9d85..fa932a9b260d7e9d966cad6de5b24c5885279f10 100644 (file)
@@ -111,7 +111,8 @@ abstract class CRM_Utils_Hook {
    *
    * @return mixed
    */
-  abstract function invoke($numParams,
+  abstract function invoke(
+    $numParams,
     &$arg1, &$arg2, &$arg3, &$arg4, &$arg5, &$arg6,
     $fnSuffix
   );
@@ -129,7 +130,8 @@ abstract class CRM_Utils_Hook {
    *
    * @return array|bool
    */
-  function commonInvoke($numParams,
+  function commonInvoke(
+    $numParams,
     &$arg1, &$arg2, &$arg3, &$arg4, &$arg5, &$arg6,
     $fnSuffix, $fnPrefix
   ) {
@@ -179,7 +181,8 @@ abstract class CRM_Utils_Hook {
    *
    * @return array|bool
    */
-  function runHooks($civiModules, $fnSuffix, $numParams,
+  function runHooks(
+    $civiModules, $fnSuffix, $numParams,
     &$arg1, &$arg2, &$arg3, &$arg4, &$arg5, &$arg6
   ) {
     // $civiModules is *not* passed by reference because runHooks
@@ -654,7 +657,8 @@ abstract class CRM_Utils_Hook {
    *
    * @return null
    */
-  static function tokenValues(&$details,
+  static function tokenValues(
+    &$details,
     $contactIDs,
     $jobID = NULL,
     $tokens = array(),
@@ -893,7 +897,8 @@ abstract class CRM_Utils_Hook {
    *
    * @return mixed
    */
-  static function alterPaymentProcessorParams($paymentObj,
+  static function alterPaymentProcessorParams(
+    $paymentObj,
     &$rawParams,
     &$cookedParams
   ) {
index 6019cf8a2ffab1bd0e7756bd77e80bc2745c6cfb..3ae3c1b045be35117eb50b7004e9f08b17937d4a 100644 (file)
@@ -75,7 +75,8 @@ class CRM_Utils_Hook_DrupalBase extends CRM_Utils_Hook {
    *
    * @return array|bool
    */
-  function invoke($numParams,
+  function invoke(
+    $numParams,
     &$arg1, &$arg2, &$arg3, &$arg4, &$arg5, &$arg6,
     $fnSuffix) {
 
index 976ab038c8eb68a03aa3ed404fe2889f6a3f2b67..b5792e673ad4e95fcb7c972c3cf88f811690d4e6 100644 (file)
@@ -68,7 +68,8 @@ class CRM_Utils_Hook_Joomla extends CRM_Utils_Hook {
    *
    * @return mixed
    */
-  function invoke($numParams,
+  function invoke(
+    $numParams,
                   &$arg1, &$arg2, &$arg3, &$arg4, &$arg5, &$arg6,
                   $fnSuffix
   ) {
index fc3375289456d40287578807a7cd751af4098070..b1c63cedee94cbefc4ec61fe09c259928ba56715 100644 (file)
@@ -68,7 +68,8 @@ class CRM_Utils_Hook_Soap extends CRM_Utils_Hook {
    *
    * @return mixed
    */
-  function invoke($numParams,
+  function invoke(
+    $numParams,
     &$arg1, &$arg2, &$arg3, &$arg4, &$arg5, &$arg6,
     $fnSuffix
   ) {
index cb26c880974694679973918ee785b25d229e359e..af2f01c4f2d4789d5676b70340640704436597b7 100644 (file)
@@ -106,7 +106,8 @@ class CRM_Utils_Hook_UnitTests extends CRM_Utils_Hook {
    *
    * @return mixed
    */
-  function invoke($numParams,
+  function invoke(
+    $numParams,
     &$arg1, &$arg2, &$arg3, &$arg4, &$arg5, &$arg6,
     $fnSuffix) {
 
index a481c7f31e951f9b0e2aebe81da8efce80557607..ed286b59a56f99b6fd5c104e4f129a6ea14bb2c8 100644 (file)
@@ -185,11 +185,12 @@ WHERE      g.name IN ( $nameString )
    * @param $whereField
    * @param null $additionalWhereCond
    */
-  function table(&$ids,
-                 $tableName,
-                 &$fields,
-                 $whereField,
-                 $additionalWhereCond = NULL
+  function table(
+    &$ids,
+    $tableName,
+    &$fields,
+    $whereField,
+    $additionalWhereCond = NULL
   ) {
     if (empty($ids)) {
       return;
@@ -589,9 +590,10 @@ WHERE ac.contact_id IN ( $ids )
    * @param null $lastExportTime
    * @param bool $discoverContacts
    */
-  function run($fileName,
-               $lastExportTime = NULL,
-               $discoverContacts = FALSE
+  function run(
+    $fileName,
+    $lastExportTime = NULL,
+    $discoverContacts = FALSE
   ) {
     $this->_discoverContacts = $discoverContacts;
 
@@ -615,7 +617,7 @@ WHERE  date >= $lastExportTime
 ";
     }
 
-    $dao = & CRM_Core_DAO::executeQuery($sql);
+    $dao = &CRM_Core_DAO::executeQuery($sql);
 
     $contactIDs = array();
     while ($dao->fetch()) {
index db9779fdab10a630e971b073686f0c6c45bd4b0b..9197ef0169051fdd9183be1424b9b5725b15093a 100644 (file)
@@ -302,7 +302,8 @@ class CRM_Utils_PDF_Utils {
    * @param string $author
    * @param string $title
    */
-  static function &pdflib($fileName,
+  static function &pdflib(
+    $fileName,
     $searchPath,
     &$values,
     $numPages = 1,
index 1811dc5640e5f796aa51e36848d91ebc17941af3..65068dd24383b885e0940b93acb5d8c4d7cdb0f1 100644 (file)
@@ -158,7 +158,8 @@ class CRM_Utils_REST {
     if (isset($result['count'])) {
       $count = ' count="' . $result['count'] . '" ';
     }
-    else { $count = "";
+    else {
+      $count = "";
     }
     $xml = "<?xml version=\"1.0\"?>
       <ResultSet xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" $count>
@@ -227,7 +228,8 @@ class CRM_Utils_REST {
             if ($inquote || $inarray) {
               $result .= $char;
             }
-            else { $result .= $char . $newline . str_repeat($tab, $tabcount);
+            else {
+              $result .= $char . $newline . str_repeat($tab, $tabcount);
             }
             break;
 
@@ -426,7 +428,8 @@ class CRM_Utils_REST {
       }
     }
     if (array_key_exists('return', $requestParams) && is_array($requestParams['return'])) {
-      foreach ($requestParams['return'] as $key => $v) { $params['return.' . $key] = 1;
+      foreach ($requestParams['return'] as $key => $v) {
+        $params['return.' . $key] = 1;
       }
     }
     return $params;
index de9c94e8d134f277150fb92d02bea035e76d4029..59e803fb24d2d7ca7c8462ae4637b973004eecda 100644 (file)
@@ -98,7 +98,8 @@ class CRM_Utils_Recent {
    * @return void
    * @static
    */
-  static function add($title,
+  static function add(
+    $title,
     $url,
     $id,
     $type,
index e0df196d12b6cfebb5e4ccbb09f35ba5fbcab927..8b031fede1fd688356a06209ec39eccc397bb120 100644 (file)
@@ -576,7 +576,8 @@ class CRM_Utils_String {
    * @return string the sanitized string
    * @static
    */
-  static function stripPathChars($string,
+  static function stripPathChars(
+    $string,
     $search = NULL,
     $replace = NULL
   ) {
index 4291abb6937f43aa4cd16a30532b58cb15b9fda6..da938cb2c195b50ddc3185ca8acd49fbe4c0a5a1 100644 (file)
@@ -262,7 +262,8 @@ class CRM_Utils_System {
    *
    * @return string
    */
-  static function href($text, $path = NULL, $query = NULL, $absolute = TRUE,
+  static function href(
+    $text, $path = NULL, $query = NULL, $absolute = TRUE,
     $fragment = NULL, $htmlize = TRUE, $frontend = FALSE, $forceBackend = FALSE
   ) {
     $url = self::url($path, $query, $absolute, $fragment, $htmlize, $frontend, $forceBackend);
@@ -805,7 +806,8 @@ class CRM_Utils_System {
    * @param bool $output
    * @param string $disposition
    */
-  static function download($name, $mimeType, &$buffer,
+  static function download(
+    $name, $mimeType, &$buffer,
     $ext = NULL,
     $output = TRUE,
     $disposition = 'attachment'
@@ -1646,7 +1648,8 @@ class CRM_Utils_System {
    *
    * @return string $url, formatted url.
    */
-  static function languageNegotiationURL($url,
+  static function languageNegotiationURL(
+    $url,
     $addLanguagePart = TRUE,
     $removeLanguagePart = FALSE
   ) {
@@ -1667,7 +1670,8 @@ class CRM_Utils_System {
    *   (optional) Sent by contribution/event reg/profile pages which uses a id
    *   specific extra file name if present.
    */
-  static function appendTPLFile($fileName,
+  static function appendTPLFile(
+    $fileName,
     &$content,
     $overideFileName = NULL
   ) {
index f1de352bf6fd209bcc3f0508890adcfd6e1263e8..b4ebc51347f300a69ca9383df7a3a55b616b94c3 100644 (file)
@@ -563,8 +563,10 @@ class CRM_Utils_System_Drupal8 extends CRM_Utils_System_DrupalBase {
    */
   public function loadBootStrap($params = array(), $loadUser = TRUE, $throwError = TRUE, $realPath = NULL) {
     static $run_once = FALSE;
-    if ($run_once) { return TRUE;
-    } else { $run_once = TRUE;
+    if ($run_once) {
+      return TRUE;
+    } else {
+      $run_once = TRUE;
     }
 
     if (!($root = $this->cmsRootPath())) {
index 289dcd2dea005715e7e86c9a21e34d5ea9f4571e..9884f47dcc4cd0f7bc696d81e215122fd5ae5266 100644 (file)
@@ -163,7 +163,8 @@ abstract class CRM_Utils_System_DrupalBase extends CRM_Utils_System_Base {
    * @return string an HTML string containing a link to the given path.
    *
    */
-  function url($path = NULL, $query = NULL, $absolute = FALSE,
+  function url(
+    $path = NULL, $query = NULL, $absolute = FALSE,
     $fragment = NULL, $htmlize = TRUE,
     $frontend = FALSE, $forceBackend = FALSE
   ) {
index 0fb75eaab3dcec5a0b72f5a3cd124b88cdc16869..de314ec906fc1d13e0bb6aaa2bd6b46d2d52b0bc 100644 (file)
@@ -357,7 +357,8 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base {
    *
    * @return string            an HTML string containing a link to the given path.
    */
-  function url($path = NULL, $query = NULL, $absolute = TRUE,
+  function url(
+    $path = NULL, $query = NULL, $absolute = TRUE,
     $fragment = NULL, $htmlize = TRUE,
     $frontend = FALSE, $forceBackend = FALSE
   ) {
index f5406002529217f4d6be0a69a4ba68d859f53706..398fd221e076931f41af09a6cbd6eab9ea70358b 100644 (file)
@@ -183,7 +183,8 @@ class CRM_Utils_System_UnitTests extends CRM_Utils_System_Drupal {
    *
    * @return string
    */
-  function url($path = NULL, $query = NULL, $absolute = FALSE,
+  function url(
+    $path = NULL, $query = NULL, $absolute = FALSE,
     $fragment = NULL, $htmlize = TRUE,
     $frontend = FALSE, $forceBackend = FALSE
   ) {
index 937c2a7d7c981541ca5c482fccc53259164dd93f..e96b894d218cc6dcf0869f57b6d820e70c400e6a 100644 (file)
@@ -928,7 +928,8 @@ class CRM_Utils_Token {
    * @return string               The processed string
    * @static
    */
-  public static function &replaceResubscribeTokens($str, &$domain, &$groups, $html,
+  public static function &replaceResubscribeTokens(
+    $str, &$domain, &$groups, $html,
     $contact_id, $hash
   ) {
     if (self::token_match('resubscribe', 'group', $str)) {
@@ -1162,7 +1163,8 @@ class CRM_Utils_Token {
    * @return array
    * @static
    */
-  static function getTokenDetails($contactIDs,
+  static function getTokenDetails(
+    $contactIDs,
     $returnProperties = NULL,
     $skipOnHold = TRUE,
     $skipDeceased = TRUE,
@@ -1289,7 +1291,8 @@ class CRM_Utils_Token {
    * @param string $jobID
    * @return array contactDetails with hooks swapped out
    */
-  public function getAnonymousTokenDetails($contactIDs = array(0),
+  public function getAnonymousTokenDetails($contactIDs = array(
+    0),
     $returnProperties = NULL,
     $skipOnHold = TRUE,
     $skipDeceased = TRUE,
@@ -1324,7 +1327,8 @@ class CRM_Utils_Token {
    * @return array
    * @static
    */
-  static function getContributionTokenDetails($contributionIDs,
+  static function getContributionTokenDetails(
+    $contributionIDs,
     $returnProperties = NULL,
     $extraParams = NULL,
     $tokens = array(),
index 4fc7659087e8dae7b3c518225ac810a71af63800..519eb96612b89c9191f22fdc19e03e617d38309c 100644 (file)
@@ -290,7 +290,8 @@ class CRM_Utils_Weight {
    *
    * @return CRM_Core_DAO objet that holds the results of the query
    */
-  static function &query($queryType,
+  static function &query(
+    $queryType,
       $daoName,
       $fieldValues = NULL,
       $queryData,