(NFC) Update CRM/Badge CRM/Campaign CRM/Case to be up to date with a newer coder
authorSeamus Lee <seamuslee001@gmail.com>
Wed, 10 Apr 2019 00:48:27 +0000 (10:48 +1000)
committerSeamus Lee <seamuslee001@gmail.com>
Wed, 10 Apr 2019 19:56:33 +0000 (05:56 +1000)
41 files changed:
CRM/Badge/BAO/Layout.php
CRM/Badge/Page/AJAX.php
CRM/Campaign/BAO/Petition.php
CRM/Campaign/BAO/Query.php
CRM/Campaign/BAO/Survey.php
CRM/Campaign/Form/Petition.php
CRM/Campaign/Form/Search.php
CRM/Campaign/Form/Survey/Delete.php
CRM/Campaign/Form/Survey/Main.php
CRM/Campaign/Form/Survey/Questions.php
CRM/Campaign/Form/Survey/Results.php
CRM/Campaign/Form/Task/Interview.php
CRM/Campaign/Info.php
CRM/Campaign/Page/Petition.php
CRM/Campaign/Page/Petition/Confirm.php
CRM/Campaign/Page/Petition/ThankYou.php
CRM/Campaign/Page/SurveyType.php
CRM/Campaign/PseudoConstant.php
CRM/Campaign/Selector/Search.php
CRM/Campaign/Task.php
CRM/Case/BAO/Case.php
CRM/Case/BAO/CaseType.php
CRM/Case/Form/Activity/LinkCases.php
CRM/Case/Form/Case.php
CRM/Case/Form/EditClient.php
CRM/Case/Form/Report.php
CRM/Case/Form/Search.php
CRM/Case/Form/Task.php
CRM/Case/Form/Task/Batch.php
CRM/Case/Form/Task/PickProfile.php
CRM/Case/Form/Task/Print.php
CRM/Case/Form/Task/Result.php
CRM/Case/Form/Task/SearchTaskHookSample.php
CRM/Case/Info.php
CRM/Case/Page/AJAX.php
CRM/Case/Page/Tab.php
CRM/Case/PseudoConstant.php
CRM/Case/Selector/Search.php
CRM/Case/Task.php
CRM/Case/XMLProcessor/Process.php
CRM/Case/XMLProcessor/Report.php

index fc60633e237251d8076a4120fa784dd34a2cf7c1..8ad8ca1dad18ea5f5d9b9a01922367506889bf6e 100644 (file)
@@ -177,7 +177,7 @@ class CRM_Badge_BAO_Layout extends CRM_Core_DAO_PrintLabel {
    * @return array
    *   associated array of decoded elements
    */
-  static public function getDecodedData($jsonData) {
+  public static function getDecodedData($jsonData) {
     return json_decode($jsonData, TRUE);
   }
 
index 2918f14debda4644aacbe7be7ac18166f15167c3..4e0af60ad66e7448700a141f962755754948c236 100644 (file)
@@ -32,6 +32,7 @@
  *
  */
 class CRM_Badge_Page_AJAX {
+
   public static function getImageProp() {
     $img = $_GET['img'];
     list($w, $h) = CRM_Badge_BAO_Badge::getImageProperties($img);
index 82573024e659a05246bb0935a82a2400a7b4d206..a9159061a0e9da5373b0024da5d889f7c6fe0857 100644 (file)
@@ -31,6 +31,7 @@
  * @copyright CiviCRM LLC (c) 2004-2019
  */
 class CRM_Campaign_BAO_Petition extends CRM_Campaign_BAO_Survey {
+
   /**
    * Class constructor.
    */
@@ -176,7 +177,8 @@ SELECT  petition.id                         as id,
    * @param array $params
    *   (reference ) an assoc array of name/value pairs.
    *
-   * @return CRM_Campaign_BAO_Petition
+   * @return mixed
+   *   CRM_Campaign_BAO_Petition or NULl or void
    */
   public function createSignature(&$params) {
     if (empty($params)) {
@@ -355,7 +357,6 @@ AND         tag_id = ( SELECT id FROM civicrm_tag WHERE name = %2 )";
     return $statusTotal;
   }
 
-
   /**
    * @param int $surveyId
    *
index 86391e8348c3d2102b7f1d03d484a43aebc8b52c..d44e12800994b1d5ac6a2132cf7780151b299935 100644 (file)
@@ -42,9 +42,9 @@ class CRM_Campaign_BAO_Query {
    *
    * @var array
    */
-  static $_campaignFields = NULL;
+  public static $_campaignFields = NULL;
 
-  static $_applySurveyClause = FALSE;
+  public static $_applySurveyClause = FALSE;
 
   /**
    * Function get the fields for campaign.
@@ -444,12 +444,13 @@ INNER JOIN  civicrm_custom_group grp on fld.custom_group_id = grp.id
    *   An array.
    * @return $voterClause as a string
    */
+
   /**
    * @param array $params
    *
    * @return array
    */
-  static public function voterClause($params) {
+  public static function voterClause($params) {
     $voterClause = [];
     $fromClause = $whereClause = NULL;
     if (!is_array($params) || empty($params)) {
index 63c9244890b550c8ea2a6d2540822225a8b0d894..4333c01118885a23c9a74c22f11905491fac48db 100644 (file)
@@ -314,7 +314,7 @@ SELECT  survey.id    as id,
    * @param string $returnColumn
    * @param bool $includePetitionActivityType
    *
-   * @return string
+   * @return mixed
    */
   public static function getSurveyActivityType($returnColumn = 'label', $includePetitionActivityType = FALSE) {
     static $activityTypes;
index 30e9349ff42af0ac0ce98fae45dc966669a72229..f203c3d88fe97ae135d4b7c1e095fac2f5c9ae61 100644 (file)
@@ -160,7 +160,6 @@ class CRM_Campaign_Form_Petition extends CRM_Core_Form {
     return $defaults;
   }
 
-
   public function buildQuickForm() {
 
     if ($this->_action & CRM_Core_Action::DELETE) {
@@ -300,7 +299,6 @@ WHERE  $whereClause
     return empty($errors) ? TRUE : $errors;
   }
 
-
   public function postProcess() {
     // store the submitted values in an array
     $params = $this->controller->exportValues($this->_name);
index 43b0c707babdea75fc2bab63f2add95d53ebb4cf..ab7569d01ef91a237bea164cb9023460355b218f 100644 (file)
@@ -59,6 +59,7 @@ class CRM_Campaign_Form_Search extends CRM_Core_Form_Search {
 
   /**
    * Prefix for the controller.
+   * @var string
    */
   protected $_prefix = "survey_";
 
index 2f473c9632fa4db1cad06147462f7d48ca53f40f..0567a598e4f5b0d8ec9e27a0bcb1b398b6bf85dc 100644 (file)
@@ -50,7 +50,6 @@ class CRM_Campaign_Form_Survey_Delete extends CRM_Core_Form {
    */
   protected $_surveyTitle;
 
-
   /**
    * Set variables up before form is built.
    */
index 24aae308b45bec56a9c2f765b33e7a10394052ef..68f074ec19d2dec9dddad2653fb4782ccd4a93e8 100644 (file)
  */
 class CRM_Campaign_Form_Survey_Main extends CRM_Campaign_Form_Survey {
 
-  /* values
+  /**
+   * values
    *
    * @var array
+   *
    */
 
+
   public $_values;
 
   /**
index c7154ceb37b4f7bf095858fe6be0253d4052f94b..4a20450668a4919b5633277671c4fd77e8f78fcb 100644 (file)
@@ -96,7 +96,6 @@ class CRM_Campaign_Form_Survey_Questions extends CRM_Campaign_Form_Survey {
     parent::buildQuickForm();
   }
 
-
   /**
    * Process the form.
    */
index 20475c05aac0e62515f726c1cf51876db6e26635..56560418d1f3c38804ad2fdaad238e8b6dd4d946 100644 (file)
@@ -40,10 +40,13 @@ class CRM_Campaign_Form_Survey_Results extends CRM_Campaign_Form_Survey {
 
   protected $_reportTitle;
 
-  /* values
+  /**
+   * values
    *
    * @var array
+   *
    */
+
   public $_values;
 
   const NUM_OPTION = 11;
index 1bffb99f9a1d073e2f8e45ed55e25d2e456b65c5..a1668fdb988fbe17dc55c0516dd65ac11e6ac760 100644 (file)
@@ -45,6 +45,7 @@ class CRM_Campaign_Form_Task_Interview extends CRM_Campaign_Form_Task {
 
   /**
    * Variable to store redirect path
+   * @var string
    */
   private $_userContext;
 
index 07b5373ff3181c98330594ce33f7f5fc7f716f54..9543c059d5b5952635fb5c41eace667ea055c24c 100644 (file)
@@ -36,6 +36,7 @@
 class CRM_Campaign_Info extends CRM_Core_Component_Info {
 
   /**
+   * @var string
    * @inheritDoc
    */
   protected $keyword = 'campaign';
@@ -54,7 +55,6 @@ class CRM_Campaign_Info extends CRM_Core_Component_Info {
     ];
   }
 
-
   /**
    * @inheritDoc
    * @param bool $getAllUnconditionally
@@ -103,7 +103,6 @@ class CRM_Campaign_Info extends CRM_Core_Component_Info {
     return $permissions;
   }
 
-
   /**
    * @inheritDoc
    * @return null
index caf264277b4b5b02cc7f5a9b631f17f619c59f49..c526df7f0eee9cfca492ae31b11561422ad6680c 100644 (file)
@@ -35,6 +35,7 @@
  * Page for displaying Petition Signatures.
  */
 class CRM_Campaign_Page_Petition extends CRM_Core_Page {
+
   public function browse() {
 
     //get the survey id
index 4d6548f6ab1a5a852ef137f3a6205a990435a281..ec341bfa8a6d7ce6255def3a250de0b5437be671 100644 (file)
@@ -31,6 +31,7 @@
  * @copyright CiviCRM LLC (c) 2004-2019
  */
 class CRM_Campaign_Page_Petition_Confirm extends CRM_Core_Page {
+
   /**
    * @return string
    * @throws Exception
index 88eae02f3f14f26f1c14f3548bf4800fb4f21ab1..ac4d8d4b83422ebe0e7cf133b203508136003bfa 100644 (file)
@@ -31,6 +31,7 @@
  * @copyright CiviCRM LLC (c) 2004-2019
  */
 class CRM_Campaign_Page_Petition_ThankYou extends CRM_Core_Page {
+
   /**
    * Run page.
    *
index 7303571c3fc13fa7263ea824576309566b1c336e..bfe7e4cd906c59e7b4ba26c087c50768570fbd97 100644 (file)
@@ -43,7 +43,7 @@ class CRM_Campaign_Page_SurveyType extends CRM_Core_Page_Basic {
    *
    * @var array
    */
-  static $_links = NULL;
+  public static $_links = NULL;
 
   /**
    * The option group name.
index c9838d310bb7236e933bf1cdad2b0cb8b76856e1..e121a86d5b6f32dfd97bd29ed7e3505d511bbcc0 100644 (file)
@@ -57,6 +57,7 @@ class CRM_Campaign_PseudoConstant extends CRM_Core_PseudoConstant {
 
   /**
    * Engagement Level
+   * @var int
    */
   private static $engagementLevel;
 
index 5840333917503e8dcb4245bb9ccadce065c245e3..1dc5c177b37ff3a7602cfb60670203de69e204ea 100644 (file)
@@ -41,20 +41,20 @@ class CRM_Campaign_Selector_Search extends CRM_Core_Selector_Base implements CRM
    *
    * @var array
    */
-  static $_links = NULL;
+  public static $_links = NULL;
 
   /**
    * We use desc to remind us what that column is, name is used in the tpl
    *
    * @var array
    */
-  static $_columnHeaders;
+  public static $_columnHeaders;
 
   /**
    * Properties of contact we're interested in displaying
    * @var array
    */
-  static $_properties = [
+  public static $_properties = [
     'contact_id',
     'sort_name',
     'street_unit',
@@ -178,7 +178,7 @@ class CRM_Campaign_Selector_Search extends CRM_Core_Selector_Base implements CRM
    *
    * @return array
    */
-  static public function &links() {
+  public static function &links() {
     return self::$_links = [];
   }
 
index 13682c1a44b0afa8cdf87cb7b998b3b661ee4c5e..6e4367b0a6f82e670d519d58882562ecf2463da5 100644 (file)
  */
 class CRM_Campaign_Task extends CRM_Core_Task {
 
+  /**
+   * Campaign tasks
+   */
   const
-    // Campaign tasks
     INTERVIEW = 601,
     RESERVE = 602,
     RELEASE = 603;
 
-  static $objectType = 'campaign';
+  /**
+   * @var string
+   */
+  public static $objectType = 'campaign';
 
   /**
    * These tasks are the core set of tasks that the user can perform
index db2d1ca90c96c93baa6687a751d4fd428e0b5ecd..091b4e9f046f74b26202acd3c39bd5fac2f95fc2 100644 (file)
@@ -41,7 +41,7 @@ class CRM_Case_BAO_Case extends CRM_Case_DAO_Case {
    *
    * @var array
    */
-  static $_exportableFields = NULL;
+  public static $_exportableFields = NULL;
 
   /**
    * Class constructor.
@@ -416,6 +416,7 @@ WHERE cc.contact_id = %1 AND civicrm_case_type.name = '{$caseType}'";
    * @param int $userID
    * @param string $condition
    * @param string $limit
+   * @param string $order
    *
    * @return string
    */
index d7985761140cfd792859039503e960a9148d8f6b..2127b92e37d40af115ca9b7d5db401e8d28620e9 100644 (file)
@@ -41,7 +41,7 @@ class CRM_Case_BAO_CaseType extends CRM_Case_DAO_CaseType {
    *
    * @var array
    */
-  static $_exportableFields = NULL;
+  public static $_exportableFields = NULL;
 
   /**
    * Takes an associative array and creates a Case Type object.
@@ -102,7 +102,6 @@ class CRM_Case_BAO_CaseType extends CRM_Case_DAO_CaseType {
     }
   }
 
-
   /**
    * Format / convert submitted array to xml for case type definition
    *
index 516647c3f41fb3250744cc5c2c52fbd1f0a8395c..322225c52b3952997f61489253f96697fa7995d6 100644 (file)
@@ -35,6 +35,7 @@
  * This class generates form components for LinkCase Activity.
  */
 class CRM_Case_Form_Activity_LinkCases {
+
   /**
    * @param CRM_Core_Form $form
    *
index f988aba14562869db00e0c638ae5926524712c41..685ce79553d009aafacc0f47d4d65dbba375572b 100644 (file)
@@ -45,41 +45,49 @@ class CRM_Case_Form_Case extends CRM_Core_Form {
 
   /**
    * Case Id
+   * @var int
    */
   public $_caseId = NULL;
 
   /**
    * Client Id
+   * @var int
    */
   public $_currentlyViewedContactId = NULL;
 
   /**
    * Activity Type File
+   * @var int
    */
   public $_activityTypeFile = NULL;
 
   /**
    * Logged in contact Id
+   * @var int
    */
   public $_currentUserId = NULL;
 
   /**
    * Activity type Id
+   * @var int
    */
   public $_activityTypeId = NULL;
 
   /**
    * Activity type Id
+   * @var int
    */
   public $_activityId = NULL;
 
   /**
    * Action
+   * @var int
    */
   public $_action;
 
   /**
    * Case type id
+   * @var int
    */
   public $_caseTypeId = NULL;
 
index 30c354a668f642a4780ed1ed5c18b64d79b73e1f..6c38dd0928dc8894ca4074b642a4829d29b46e94 100644 (file)
@@ -91,7 +91,6 @@ class CRM_Case_Form_EditClient extends CRM_Core_Form {
     $this->preventAjaxSubmit();
   }
 
-
   public function addRules() {
     $this->addFormRule([get_class($this), 'formRule'], $this);
   }
index 5cb501fe1934a516de12d044d7892d00e6626e52..0c926c66bf102da04e6d3279f64ea8bef2951c88 100644 (file)
@@ -38,16 +38,19 @@ class CRM_Case_Form_Report extends CRM_Core_Form {
 
   /**
    * Case Id
+   * @var int
    */
   public $_caseID = NULL;
 
   /**
    * Client Id
+   * @var int
    */
   public $_clientID = NULL;
 
   /**
    * Activity set name
+   * @var string
    */
   public $_activitySetName = NULL;
 
@@ -98,17 +101,16 @@ class CRM_Case_Form_Report extends CRM_Core_Form {
     );
 
     $this->addButtons([
-        [
-          'type' => 'refresh',
-          'name' => ts('Generate Report'),
-          'isDefault' => TRUE,
-        ],
-        [
-          'type' => 'cancel',
-          'name' => ts('Cancel'),
-        ],
-      ]
-    );
+      [
+        'type' => 'refresh',
+        'name' => ts('Generate Report'),
+        'isDefault' => TRUE,
+      ],
+      [
+        'type' => 'cancel',
+        'name' => ts('Cancel'),
+      ],
+    ]);
     // We want this form to redirect to a full page
     $this->preventAjaxSubmit();
   }
index 894e0059e34a9f2e91d25883a24a8fb9eff1d0d2..7aabdfe48958360e2eb5f874e41c99fae3f8cff8 100644 (file)
@@ -59,6 +59,7 @@ class CRM_Case_Form_Search extends CRM_Core_Form_Search {
 
   /**
    * Prefix for the controller
+   * @var sting
    */
   protected $_prefix = 'case_';
 
@@ -298,6 +299,8 @@ class CRM_Case_Form_Search extends CRM_Core_Form_Search {
    *
    * @param array $fields
    *   Posted values of the form.
+   * @param array $files
+   * @param object $form
    *
    * @return array|bool
    */
index ee7644925b3ef115eec3b5166773255045f7fbb5..43d77f1ced672571cebede2d4540d7f6c9b7e3ec 100644 (file)
  */
 class CRM_Case_Form_Task extends CRM_Core_Form_Task {
 
-  // Must be set to entity table name (eg. civicrm_participant) by child class
-  static $tableName = 'civicrm_case';
-  // Must be set to entity shortname (eg. event)
-  static $entityShortname = 'case';
+  /**
+   * Must be set to entity table name (eg. civicrm_participant) by child class
+   * @var string
+   */
+  public static $tableName = 'civicrm_case';
+  /**
+   * Must be set to entity shortname (eg. event)
+   * @var string
+   */
+  public static $entityShortname = 'case';
 
   /**
    * @inheritDoc
index 5d28b9761713f671de7fd8f6d1101a418253e685..c7960774ff1b8661775d619276be036f6eb5f956 100644 (file)
  */
 class CRM_Case_Form_Task_Batch extends CRM_Core_Form_Task_Batch {
 
-  // Must be set to entity table name (eg. civicrm_participant) by child class
-  static $tableName = 'civicrm_case';
-  // Must be set to entity shortname (eg. event)
-  static $entityShortname = 'case';
+  /**
+   * Must be set to entity table name (eg. civicrm_participant) by child class
+   * @var string
+   */
+  public static $tableName = 'civicrm_case';
+  /**
+   * Must be set to entity shortname (eg. event)
+   * @var string
+   */
+  public static $entityShortname = 'case';
 
   /**
    * Process the form after the input has been submitted and validated.
index f7609a89ab86d537c0473afca0064de38d2e5d84..c03d48df1e42bd0791966fcaa5dcd802c1a0c3c2 100644 (file)
@@ -40,13 +40,13 @@ class CRM_Case_Form_Task_PickProfile extends CRM_Core_Form_Task_PickProfile {
    *
    * @var string
    */
-  static $tableName = 'civicrm_case';
+  public static $tableName = 'civicrm_case';
 
   /**
    * Must be set to entity shortname (eg. event)
    *
    * @var string
    */
-  static $entityShortname = 'case';
+  public static $entityShortname = 'case';
 
 }
index 09e0085768cd40907b2f9e743748cbb6cbdccf1d..9bb1167f8eb6761244d9d78c48a19bdd53660fc2 100644 (file)
@@ -74,18 +74,17 @@ class CRM_Case_Form_Task_Print extends CRM_Case_Form_Task {
     // just need to add a javacript to popup the window for printing
     //
     $this->addButtons([
-        [
-          'type' => 'next',
-          'name' => ts('Print Case List'),
-          'js' => ['onclick' => 'window.print()'],
-          'isDefault' => TRUE,
-        ],
-        [
-          'type' => 'back',
-          'name' => ts('Done'),
-        ],
-      ]
-    );
+      [
+        'type' => 'next',
+        'name' => ts('Print Case List'),
+        'js' => ['onclick' => 'window.print()'],
+        'isDefault' => TRUE,
+      ],
+      [
+        'type' => 'back',
+        'name' => ts('Done'),
+      ],
+    ]);
   }
 
   /**
index 49de632eba767cb663a7521f006be34cd116618f..d7a3a4678b481a4cb05448ca851c8657c87a4453 100644 (file)
@@ -47,13 +47,12 @@ class CRM_Case_Form_Task_Result extends CRM_Case_Form_Task {
    */
   public function buildQuickForm() {
     $this->addButtons([
-        [
-          'type' => 'done',
-          'name' => ts('Done'),
-          'isDefault' => TRUE,
-        ],
-      ]
-    );
+      [
+        'type' => 'done',
+        'name' => ts('Done'),
+        'isDefault' => TRUE,
+      ],
+    ]);
   }
 
 }
index f9f9744234d3e4ff139b73cff50fb05e31152073..ec17a006c2ded88eab3d0fd458d5a222eb05206c 100644 (file)
@@ -73,13 +73,12 @@ WHERE cs.id IN ( {$caseIDs} )";
    */
   public function buildQuickForm() {
     $this->addButtons([
-        [
-          'type' => 'done',
-          'name' => ts('Done'),
-          'isDefault' => TRUE,
-        ],
-      ]
-    );
+      [
+        'type' => 'done',
+        'name' => ts('Done'),
+        'isDefault' => TRUE,
+      ],
+    ]);
   }
 
 }
index cb5e7b8cbb07900d287956fb437614bf9028155b..2a57400c683a9ed9ae4e5f32e87bc5e5b6a5f1f6 100644 (file)
@@ -37,6 +37,7 @@ class CRM_Case_Info extends CRM_Core_Component_Info {
 
 
   /**
+   * @var string
    * @inheritDoc
    */
   protected $keyword = 'case';
index 764f1f7d13073317e740da5ad5e9db333c73297d..4507d161a96b100323a777712f2902ae74a471b6 100644 (file)
@@ -106,8 +106,8 @@ class CRM_Case_Page_AJAX {
     $case = civicrm_api3('Case', 'getsingle', [
       'id' => $caseId,
       'check_permissions' => TRUE,
-      'return' => ['subject', 'case_type_id', 'status_id', 'start_date', 'end_date']]
-    );
+      'return' => ['subject', 'case_type_id', 'status_id', 'start_date', 'end_date'],
+    ]);
 
     $caseStatuses = CRM_Case_PseudoConstant::caseStatus();
     $caseTypes = CRM_Case_PseudoConstant::caseType('title', FALSE);
index 36116498f41865df2052f4ec35529005239f2da8..d7c7055ca2c4ea352e3cd07973bedf614dda4b93 100644 (file)
@@ -41,7 +41,7 @@ class CRM_Case_Page_Tab extends CRM_Core_Page {
    *
    * @var array
    */
-  static $_links = NULL;
+  public static $_links = NULL;
   public $_permission = NULL;
   public $_contactId = NULL;
 
@@ -216,7 +216,7 @@ class CRM_Case_Page_Tab extends CRM_Core_Page {
    * @return array
    *   (reference) of action links
    */
-  static public function &links() {
+  public static function &links() {
     $config = CRM_Core_Config::singleton();
 
     if (!(self::$_links)) {
index 3ee2236862157d00e4ba661c6e15244266ba7acb..7cc943acfa58a61c075c8f4d274fc191b5d02425 100644 (file)
@@ -40,7 +40,7 @@ class CRM_Case_PseudoConstant extends CRM_Core_PseudoConstant {
    * Activity type
    * @var array
    */
-  static $activityTypeList = [];
+  public static $activityTypeList = [];
 
   /**
    * Get all the case statues.
index 5869a50fd22e3cd54dc50b5b00cf9f5e74b480df..55c396e60ee1260aded7a33a1f24b1c853e79f57 100644 (file)
@@ -41,20 +41,20 @@ class CRM_Case_Selector_Search extends CRM_Core_Selector_Base {
    *
    * @var array
    */
-  static $_links = NULL;
+  public static $_links = NULL;
 
   /**
    * We use desc to remind us what that column is, name is used in the tpl
    *
    * @var array
    */
-  static $_columnHeaders;
+  public static $_columnHeaders;
 
   /**
    * Properties of contact we're interested in displaying
    * @var array
    */
-  static $_properties = [
+  public static $_properties = [
     'contact_id',
     'contact_type',
     'sort_name',
@@ -180,7 +180,7 @@ class CRM_Case_Selector_Search extends CRM_Core_Selector_Base {
    *
    * @return array
    */
-  static public function &links($isDeleted = FALSE, $key = NULL) {
+  public static function &links($isDeleted = FALSE, $key = NULL) {
     $extraParams = ($key) ? "&key={$key}" : NULL;
 
     if ($isDeleted) {
index 6196aa6cf4337b2a788fb8618569a44f0c000501..5907da813d544964ae10c6b855a30d804f956ea9 100644 (file)
  */
 class CRM_Case_Task extends CRM_Core_Task {
 
-  const
-    // Case tasks
-    RESTORE_CASES = 501;
+  /**
+   * Case tasks
+   */
+  const RESTORE_CASES = 501;
 
-  static $objectType = 'case';
+  /**
+   * @var string
+   */
+  public static $objectType = 'case';
 
   /**
    * These tasks are the core set of tasks that the user can perform
index 338ae20fadd01a1ad71f7bbb12b44baa939c219a..b83e11cce6637e89012059f1be4e1ab238cb538e 100644 (file)
@@ -619,7 +619,7 @@ AND        a.is_deleted = 0
 
     $defaultAssigneeOptions = civicrm_api3('OptionValue', 'get', [
       'option_group_id' => 'activity_default_assignee',
-      'options' => [ 'limit' => 0 ]
+      'options' => ['limit' => 0],
     ]);
 
     foreach ($defaultAssigneeOptions['values'] as $option) {
@@ -686,7 +686,7 @@ AND        a.is_deleted = 0
   protected function isBidirectionalRelationshipType($relationshipTypeId) {
     $relationshipTypeResult = civicrm_api3('RelationshipType', 'get', [
       'id' => $relationshipTypeId,
-      'options' => ['limit' => 1]
+      'options' => ['limit' => 1],
     ]);
 
     if ($relationshipTypeResult['count'] === 0) {
@@ -712,7 +712,7 @@ AND        a.is_deleted = 0
     }
 
     $contact = civicrm_api3('Contact', 'get', [
-      'id' => $activityTypeXML->default_assignee_contact
+      'id' => $activityTypeXML->default_assignee_contact,
     ]);
 
     if ($contact['count'] == 1) {
index aa0b6c0b521545846baaed0745c49a2c979f750c..8224e22c1d6b47fd829eb30e559016b6da744441 100644 (file)
@@ -65,9 +65,9 @@ class CRM_Case_XMLProcessor_Report extends CRM_Case_XMLProcessor {
 
   public function getRedactionRules() {
     foreach (array(
-               'redactionStringRules',
-               'redactionRegexRules',
-             ) as $key => $rule) {
+      'redactionStringRules',
+      'redactionRegexRules',
+    ) as $key => $rule) {
       $$rule = CRM_Case_PseudoConstant::redactionRule($key);
 
       if (!empty($$rule)) {