INFRA-132 - bin/ - phpcbf
authorTim Otten <totten@civicrm.org>
Tue, 6 Jan 2015 21:35:24 +0000 (13:35 -0800)
committerTim Otten <totten@civicrm.org>
Tue, 6 Jan 2015 23:07:46 +0000 (15:07 -0800)
25 files changed:
bin/ContributionProcessor.php
bin/cleanup42.php
bin/cli.class.php
bin/cli.php
bin/cron.php
bin/csv/delete.php
bin/csv/export.php
bin/csv/import.php
bin/deprecated/CiviReportMail.php
bin/deprecated/EmailProcessor.php
bin/deprecated/ParticipantProcessor.php
bin/deprecated/RespondentProcessor.php
bin/deprecated/UpdateAddress.php
bin/deprecated/UpdateGreeting.php
bin/deprecated/UpdateMembershipRecord.php
bin/deprecated/UpdateMembershipReminderDate.php
bin/deprecated/UpdatePledgeRecord.php
bin/deprecated/action.cronjob.php
bin/deprecated/civimail.cronjob.php
bin/encryptDB.php
bin/migrate/export.php
bin/migrate/exportJSON.php
bin/migrate/import.php
bin/migrate/importJSON.php
bin/migrate/move.php

index 3cb3ae3a3007f34950f274527bcbb3596aaa5357..7f516197fc89ff06766340627536243718d8f383 100644 (file)
@@ -283,9 +283,10 @@ class CiviContributeProcessor {
         }
 
         foreach ($response[1][$response[0]]['notifications']['charge-amount-notification']
         as $amtData
+ as $amtData
         ) {
-          $searchParams = array('order-numbers' => array($amtData['google-order-number']['VALUE']),
+          $searchParams = array(
+          'order-numbers' => array($amtData['google-order-number']['VALUE']),
             'notification-types' => array('risk-information', 'new-order', 'charge-amount'),
           );
           $response = CRM_Core_Payment_Google::invokeAPI($paymentProcessor,
@@ -434,4 +435,3 @@ else {
 $lock->release();
 
 echo "Done processing<p>";
-
index b7b8a6a44f7b6d201180b5961709562e8062fef9..1c5f86792c6b35a12183919b11008125f9754f4a 100644 (file)
@@ -28,7 +28,7 @@
 /**
  * A PHP script which deletes extraneous civicrm_membership_payment rows
  * in order to correct the condition where a contribution row is linked to > 1 membership.
 */
+ */
 
 function initialize() {
   session_start();
index 8942abbaf6eb71ae62f8b11e6b11b0e7f21d9aab..924e5a0076e2771a7e6ad421fae74a2e4df98530 100644 (file)
@@ -175,7 +175,7 @@ class civicrm_cli {
         $this->_joblog = TRUE;
       }
       else {
-        while(list($short, $long) = each ($this->_additional_arguments)) {
+        while(list($short, $long) = each($this->_additional_arguments)) {
           if ($arg == '-' . $short || $arg == '--' . $long) {
             $property = '_' . $long;
             $this->$property = $value;
@@ -211,7 +211,7 @@ class civicrm_cli {
 
     $civicrm_root = dirname(__DIR__);
     chdir($civicrm_root);
-    require_once ('civicrm.config.php');
+    require_once 'civicrm.config.php';
     // autoload
     if ( !class_exists('CRM_Core_ClassLoader') ) {
       require_once $civicrm_root . '/CRM/Core/ClassLoader.php';
@@ -223,7 +223,7 @@ class civicrm_cli {
     // HTTP_HOST will be 'localhost' unless overwritten with the -s argument.
     // Now we have a Config object, we can set it from the Base URL.
     if ($_SERVER['HTTP_HOST'] == 'localhost') {
-        $_SERVER['HTTP_HOST'] = preg_replace(
+      $_SERVER['HTTP_HOST'] = preg_replace(
                 '!^https?://([^/]+)/$!i',
                 '$1',
                 $this->_config->userFrameworkBaseURL);
@@ -332,18 +332,18 @@ class civicrm_cli_csv_exporter extends civicrm_cli {
 
     $this->row = 1;
     $result = civicrm_api($this->_entity, 'Get', $this->_params);
-    $first = true;
+    $first = TRUE;
     foreach ($result['values'] as $row) {
       if($first) {
         $columns = array_keys($row);
         fputcsv($out, $columns, $this->separator, '"');
-        $first = false;
+        $first = FALSE;
       }
       //handle values returned as arrays (i.e. custom fields that allow multiple selections) by inserting a control character
       foreach ($row as &$field) {
         if(is_array($field)) {
           //convert to string
-          $field = implode($field,CRM_Core_DAO::VALUE_SEPARATOR) . CRM_Core_DAO::VALUE_SEPARATOR;
+          $field = implode($field, CRM_Core_DAO::VALUE_SEPARATOR) . CRM_Core_DAO::VALUE_SEPARATOR;
         }
       }
       fputcsv($out, $row, $this->separator, '"');
@@ -368,7 +368,7 @@ class civicrm_cli_csv_file extends civicrm_cli {
    *
    */
   function __construct() {
-    $this->_required_arguments = array('entity','file');
+    $this->_required_arguments = array('entity', 'file');
     $this->_additional_arguments = array('f' => 'file');
     parent::initialize();
   }
@@ -397,7 +397,8 @@ class civicrm_cli_csv_file extends civicrm_cli {
     $this->header = $header;
     while (($data = fgetcsv($handle, 0, $this->separator)) !== FALSE) {
       // skip blank lines
-      if(count($data) == 1 && is_null($data[0])) continue;
+      if(count($data) == 1 && is_null($data[0])) { continue;
+      }
       $this->row++;
       $params = $this->convertLine($data);
       $this->processLine($params);
@@ -417,7 +418,7 @@ class civicrm_cli_csv_file extends civicrm_cli {
     foreach ($this->header as $i => $field) {
       //split any multiselect data, denoted with CRM_Core_DAO::VALUE_SEPARATOR
       if (strpos($data[$i], CRM_Core_DAO::VALUE_SEPARATOR) !== FALSE) {
-        $data[$i] = explode(CRM_Core_DAO::VALUE_SEPARATOR,$data[$i]);
+        $data[$i] = explode(CRM_Core_DAO::VALUE_SEPARATOR, $data[$i]);
         $data[$i] = array_combine($data[$i], $data[$i]);
       }
       $params[$field] = $data[$i];
index c63152d0033e6afcba58a8532d1b77361a8b3b54..21a8e15acf62612a3db638affc559353cd453a6a 100644 (file)
@@ -25,7 +25,7 @@
 */
 
 
-require_once ('cli.class.php');
+require_once 'cli.class.php';
 $cli = new civicrm_Cli();
 $cli->initialize() || die( 'Died during initialization' );
 $cli->callApi() || die( 'Died during callApi' );
index ed42f7d693733eb4d85d77eb570a4f70ad88041f..1eef6574d975a4e189bc7cc871b89a743374110b 100644 (file)
@@ -52,4 +52,3 @@ else {
   $facility->setSingleRunParams('job', $job, $params, 'From cron.php');
   $facility->executeJobByAction('job', $job);
 }
-
index 5e7757e682262668dcaa265b2891d15f4ebbeb30..eb0b85ec5fb745a7dd65dd8fd862f3f6e321df6f 100644 (file)
@@ -33,9 +33,7 @@
  *
  **/
 
-require_once (dirname(__DIR__) . '/cli.class.php');
+require_once dirname(__DIR__) . '/cli.class.php';
 
 $entityImporter = new civicrm_cli_csv_deleter();
 $entityImporter->run();
-
-
index b3eb45d4b7dec881bf346c0c0faa3bcba05716ec..370c50dcbf027c17826ffb72ee4dd359d0e99646 100644 (file)
@@ -34,7 +34,7 @@
  * e.g.: php bin/csv/export.php -e Contact --email=jamie@progressivetech.org
  *
  **/
-require_once (dirname(__DIR__) . '/cli.class.php');
+require_once dirname(__DIR__) . '/cli.class.php';
 
 $entityExporter = new civicrm_cli_csv_exporter();
 $entityExporter->run();
index 46f6b9ac6974d0878e1d81ab966eca999fcb8ce8..3495865184ce857403cf94f2ca05756cba7ff429 100644 (file)
@@ -31,9 +31,7 @@
  * e.g.: php bin/csv/import.php -e Contact --file /tmp/import.csv
  *
  **/
-require_once (dirname(__DIR__) . '/cli.class.php');
+require_once dirname(__DIR__) . '/cli.class.php';
 
 $entityImporter = new civicrm_cli_csv_importer();
 $entityImporter->run();
-
-
index 66cfcad74afd2abb0eefd47de1ee9fdc9af5c10b..9c9c66570f300f9590ae12f8a83786a19e1baf1f 100644 (file)
@@ -75,4 +75,3 @@ class CiviReportMail {
 session_start();
 $obj = new CiviReportMail;
 $obj->run();
-
index f025fc0306e8ccaba80b844441973e10e29723ec..84a0e52fb59322292de1bc26a0852d106c41fc7e 100644 (file)
@@ -34,7 +34,7 @@
  */
 
 /**
- *When runing script from cli :
+ * When runing script from cli :
  * 1. By default script is being used for civimail processing.
  * eg : nice -19 php bin/EmailProcessor.php -u<login> -p<password> -s<sites(or default)>
  *
@@ -46,7 +46,7 @@
 // bootstrap the environment and run the processor
 // you can run this program either from an apache command, or from the cli
 if (php_sapi_name() == "cli") {
-  require_once ("bin/cli.php");
+  require_once "bin/cli.php";
   $cli = new civicrm_cli();
   //if it doesn't die, it's authenticated
   //log the execution of script
@@ -108,4 +108,3 @@ else {
 
   $lock->release();
 }
-
index c1b3fa241327443a34eb4e822e55a8d97c51f9c3..ecb028ecab0a33376b1321cc863ba74f5b516a5a 100644 (file)
@@ -264,5 +264,3 @@ $obj = new CRM_ParticipantProcessor();
 echo "Updating..";
 $obj->updateParticipantStatus();
 echo "<br />Participant records updated. (Done)";
-
-
index 3d7304a5f2437597063279b2431ba97a87736743..452969c45bea6e9ef931a2323ed8e3b1fdcc9f81 100644 (file)
@@ -108,5 +108,3 @@ $obj = new CRM_RespondentProcessor();
 echo "Releasing..";
 $obj->releaseRespondent();
 echo "<br /><br />Respondent Release Done";
-
-
index b917a2835e4b1611036d1aeeabfb4ef49888ab9d..030aec5ce0c50883820ac301318b184702f7a60e 100644 (file)
@@ -176,7 +176,7 @@ WHERE      {$whereClause}
   $dao = CRM_Core_DAO::executeQuery($query, CRM_Core_DAO::$_nullArray);
 
   if ($processGeocode) {
-    require_once (str_replace('_', DIRECTORY_SEPARATOR, $config->geocodeMethod) . '.php');
+    require_once str_replace('_', DIRECTORY_SEPARATOR, $config->geocodeMethod) . '.php';
   }
 
   require_once 'CRM/Core/DAO/Address.php';
@@ -278,4 +278,3 @@ WHERE      {$whereClause}
 }
 
 run();
-
index e4db31d3af47568745126e836d8f5c8a2ccf1de4..6d2c76e9d50939717ec41171a948e5e05809579f 100644 (file)
@@ -237,4 +237,3 @@ UPDATE civicrm_contact
 $obj = new CRM_UpdateGreeting();
 $obj->updateGreeting();
 echo "\n\n Greeting is updated for contact(s). (Done) \n";
-
index bd64e2da126282b48fa863d57a6c6d176542f58f..cf51117d888136b8db6a517257b1e2840bad95da 100644 (file)
@@ -49,7 +49,7 @@ class CRM_UpdateMembershipRecord {
   function __construct() {
     // you can run this program either from an apache command, or from the cli
     if (php_sapi_name() == "cli") {
-      require_once ("cli.php");
+      require_once "cli.php";
       $cli = new civicrm_cli();
       //if it doesn't die, it's authenticated
     }
@@ -85,4 +85,3 @@ $obj = new CRM_UpdateMembershipRecord();
 echo "\n Updating ";
 $obj->updateMembershipStatus();
 echo "\n\n Membership records updated. (Done) \n";
-
index e5d93ea0df170a2dd8c6441841485df7b7abec29..ee6f7e2fcf93cfc391b364a8e93d4f75540994f9 100644 (file)
@@ -41,7 +41,7 @@ class CRM_UpdateMembershipReminderDate {
   function __construct() {
     // you can run this program either from an apache command, or from the cli
     if (php_sapi_name() == "cli") {
-      require_once ("cli.php");
+      require_once "cli.php";
       $cli = new civicrm_cli();
       //if it doesn't die, it's authenticated
     }
@@ -114,4 +114,3 @@ $reminderDate = new CRM_UpdateMembershipReminderDate();
 echo "\n Updating... ";
 $reminderDate->updateMembershipReminderDate();
 echo "\n\n Membership(s) reminder date updated. (Done) \n";
-
index 529f02251ca2840a2c5345ba08a6e3c3dd277b63..981b8c3482cd40f63dc321d2348fe30b2c5bc3a9 100644 (file)
@@ -170,7 +170,8 @@ SELECT  pledge.contact_id              as contact_id,
       require_once 'CRM/Core/BAO/Domain.php';
       require_once 'CRM/Core/SelectValues.php';
       $domain = CRM_Core_BAO_Domain::getDomain();
-      $tokens = array('domain' => array('name', 'phone', 'address', 'email'),
+      $tokens = array(
+      'domain' => array('name', 'phone', 'address', 'email'),
         'contact' => CRM_Core_SelectValues::contactTokens(),
       );
 
@@ -303,5 +304,3 @@ $obj = new CRM_UpdatePledgeRecord();
 echo "Updating<br />";
 $obj->updatePledgeStatus();
 echo "<br />Pledge records update script finished.";
-
-
index 3f9b366688f5fe2fd6ff7528e06a0c19272e9f3d..1bb7b84e5d9497154927d3f08ff39dd4e9b7881b 100644 (file)
@@ -39,7 +39,7 @@ class CRM_Cron_Action {
   function __construct() {
     // you can run this program either from an apache command, or from the cli
     if (php_sapi_name() == "cli") {
-      require_once ("cli.php");
+      require_once "cli.php";
       $cli = new civicrm_cli();
       //if it doesn't die, it's authenticated
     }
@@ -75,4 +75,3 @@ class CRM_Cron_Action {
 
 $cron = new CRM_Cron_Action();
 $cron->run();
-
index 093efe18c9fcd213ac66c43e5899533813c44237..522f564e5484023cfa5d9b97c615e4e6b7f3aefb 100644 (file)
@@ -53,7 +53,7 @@ function run() {
 
 // you can run this program either from an apache command, or from the cli
 if (php_sapi_name() == "cli") {
-  require_once ("bin/cli.php");
+  require_once "bin/cli.php";
   $cli = new civicrm_cli();
 
   require_once 'CRM/Mailing/BAO/Mailing.php';
@@ -64,4 +64,3 @@ if (php_sapi_name() == "cli") {
 else {
   run();
 }
-
index 83f55113f4acc342ec3416ce7d4306f4f8f0d140..ab93c1208174c72deb60b04bfb7c3f56fdeb21b3 100644 (file)
@@ -100,4 +100,3 @@ function run() {
 }
 
 run();
-
index 9541b5f070c7a747c2dd3dba11c10c1d4399d547..f4b3d509ed4aba9812524e9c7dcf4a90edc29255 100644 (file)
@@ -49,4 +49,3 @@ function run() {
 }
 
 run();
-
index 1c9eb9d31a1105e4193e9b0a76733b2ea88fa41a..2e1d993c74da8800cb243cb49609df56d11e5491 100644 (file)
@@ -50,4 +50,3 @@ function run() {
 }
 
 run();
-
index 5c3b2c54d3efcb03030095c654c72a26b35bc8af..28915d58cd7930f5de48d12f8f1050721ddc5cdc 100644 (file)
@@ -58,4 +58,3 @@ function run() {
 }
 
 run();
-
index 15e74d59c64627d85a7e7be801dbc282c2ac340e..680d55b7aee344efcf33ad3be5e49d277a676d15 100644 (file)
@@ -49,4 +49,3 @@ function run() {
 }
 
 run();
-
index 33bf0c6c9586ddee03e9d3759e6746a6384e5b38..c2c15d9d11deca55cc90a942679cd35196d08bdb 100644 (file)
@@ -43,4 +43,3 @@ function run() {
 }
 
 run();
-