Merge pull request #15933 from civicrm/5.20
[civicrm-core.git] / CRM / Activity / Form / Task / FileOnCase.php
index 72ee30ed2b0de81d71e605ba88100d9541fbf5a4..353e6ac9e39137cdb89603121edb9d07bce3bb21 100644 (file)
@@ -1,34 +1,18 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 5                                                  |
- +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2019                                |
- +--------------------------------------------------------------------+
- | This file is a part of CiviCRM.                                    |
- |                                                                    |
- | CiviCRM is free software; you can copy, modify, and distribute it  |
- | under the terms of the GNU Affero General Public License           |
- | Version 3, 19 November 2007 and the CiviCRM Licensing Exception.   |
+ | Copyright CiviCRM LLC. All rights reserved.                        |
  |                                                                    |
- | CiviCRM is distributed in the hope that it will be useful, but     |
- | WITHOUT ANY WARRANTY; without even the implied warranty of         |
- | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.               |
- | See the GNU Affero General Public License for more details.        |
- |                                                                    |
- | You should have received a copy of the GNU Affero General Public   |
- | License and the CiviCRM Licensing Exception along                  |
- | with this program; if not, contact CiviCRM LLC                     |
- | at info[AT]civicrm[DOT]org. If you have questions about the        |
- | GNU Affero General Public License or the licensing of CiviCRM,     |
- | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
+ | This work is published under the GNU AGPLv3 license with some      |
+ | permitted exceptions and without any warranty. For full license    |
+ | and copyright information, see https://civicrm.org/licensing       |
  +--------------------------------------------------------------------+
  */
 
 /**
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2019
+ * @copyright CiviCRM LLC https://civicrm.org/licensing
  */
 
 /**
@@ -45,11 +29,13 @@ class CRM_Activity_Form_Task_FileOnCase extends CRM_Activity_Form_Task {
 
   /**
    * Variable to store redirect path.
+   * @var string
    */
   protected $_userContext;
 
   /**
    * Variable to store contact Ids.
+   * @var array
    */
   public $_contacts;
 
@@ -68,7 +54,7 @@ class CRM_Activity_Form_Task_FileOnCase extends CRM_Activity_Form_Task {
    * Build the form object.
    */
   public function buildQuickForm() {
-    $this->addEntityRef('unclosed_case_id', ts('Select Case'), array('entity' => 'Case'), TRUE);
+    $this->addEntityRef('unclosed_case_id', ts('Select Case'), ['entity' => 'Case'], TRUE);
     $this->addDefaultButtons(ts('Save'));
   }
 
@@ -80,8 +66,8 @@ class CRM_Activity_Form_Task_FileOnCase extends CRM_Activity_Form_Task {
     $caseId = $formparams['unclosed_case_id'];
     $filedActivities = 0;
     foreach ($this->_activityHolderIds as $key => $id) {
-      $targetContactValues = $defaults = array();
-      $params = array('id' => $id);
+      $targetContactValues = $defaults = [];
+      $params = ['id' => $id];
       CRM_Activity_BAO_Activity::retrieve($params, $defaults);
       if (CRM_Case_BAO_Case::checkPermission($id, 'File On Case', $defaults['activity_type_id'])) {
 
@@ -92,13 +78,13 @@ class CRM_Activity_Form_Task_FileOnCase extends CRM_Activity_Form_Task {
           $targetContactValues = implode(',', array_keys($targetContactValues));
         }
 
-        $params = array(
+        $params = [
           'caseID' => $caseId,
           'activityID' => $id,
           'newSubject' => empty($defaults['subject']) ? '' : $defaults['subject'],
           'targetContactIds' => $targetContactValues,
           'mode' => 'file',
-        );
+        ];
 
         $error_msg = CRM_Activity_Page_AJAX::_convertToCaseActivity($params);
         if (empty($error_msg['error_msg'])) {
@@ -109,16 +95,17 @@ class CRM_Activity_Form_Task_FileOnCase extends CRM_Activity_Form_Task {
         }
       }
       else {
-        CRM_Core_Session::setStatus(ts('Not permitted to file activity %1 %2.', array(
+        CRM_Core_Session::setStatus(
+          ts('Not permitted to file activity %1 %2.', [
             1 => empty($defaults['subject']) ? '' : $defaults['subject'],
             2 => $defaults['activity_date_time'],
-          )),
+          ]),
           ts("Error"), "error");
       }
     }
 
     CRM_Core_Session::setStatus($filedActivities, ts("Filed Activities"), "success");
-    CRM_Core_Session::setStatus("", ts('Total Selected Activities: %1', array(1 => count($this->_activityHolderIds))), "info");
+    CRM_Core_Session::setStatus("", ts('Total Selected Activities: %1', [1 => count($this->_activityHolderIds)]), "info");
   }
 
 }