X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FPage.php;h=e8908fea50f1852ed4e70d1ad15e9859db3bc4e4;hb=358a1864ba3c5a3fc3ff65f03b3db045ea2199a8;hp=54b0ef6ff0a338baf45bb83409d8401da106c561;hpb=0e4e45435dc33f16b49a4093ac25158728251213;p=civicrm-core.git diff --git a/CRM/Core/Page.php b/CRM/Core/Page.php index 54b0ef6ff0..e8908fea50 100644 --- a/CRM/Core/Page.php +++ b/CRM/Core/Page.php @@ -3,7 +3,7 @@ +--------------------------------------------------------------------+ | CiviCRM version 5 | +--------------------------------------------------------------------+ - | Copyright CiviCRM LLC (c) 2004-2018 | + | Copyright CiviCRM LLC (c) 2004-2019 | +--------------------------------------------------------------------+ | This file is a part of CiviCRM. | | | @@ -28,7 +28,7 @@ /** * * @package CRM - * @copyright CiviCRM LLC (c) 2004-2018 + * @copyright CiviCRM LLC (c) 2004-2019 */ /** @@ -98,14 +98,14 @@ class CRM_Core_Page { * * @var array */ - public $ajaxResponse = array(); + public $ajaxResponse = []; /** * Url path used to reach this page * * @var array */ - public $urlPath = array(); + public $urlPath = []; /** * Should crm.livePage.js be added to the page? @@ -144,7 +144,7 @@ class CRM_Core_Page { $this->_print = CRM_Core_Smarty::PRINT_NOFORM; } // Support 'json' as well as legacy value '6' - elseif (in_array($_REQUEST['snippet'], array(CRM_Core_Smarty::PRINT_JSON, 6))) { + elseif (in_array($_REQUEST['snippet'], [CRM_Core_Smarty::PRINT_JSON, 6])) { $this->_print = CRM_Core_Smarty::PRINT_JSON; } else { @@ -177,12 +177,12 @@ class CRM_Core_Page { CRM_Utils_Hook::pageRun($this); if ($this->_print) { - if (in_array($this->_print, array( + if (in_array($this->_print, [ CRM_Core_Smarty::PRINT_SNIPPET, CRM_Core_Smarty::PRINT_PDF, CRM_Core_Smarty::PRINT_NOFORM, CRM_Core_Smarty::PRINT_JSON, - ))) { + ])) { $content = self::$_template->fetch('CRM/common/snippet.tpl'); } else { @@ -199,7 +199,7 @@ class CRM_Core_Page { if ($this->_print == CRM_Core_Smarty::PRINT_PDF) { CRM_Utils_PDF_Utils::html2pdf($content, "{$this->_name}.pdf", FALSE, - array('paper_size' => 'a3', 'orientation' => 'landscape') + ['paper_size' => 'a3', 'orientation' => 'landscape'] ); } elseif ($this->_print == CRM_Core_Smarty::PRINT_JSON) { @@ -317,10 +317,10 @@ class CRM_Core_Page { public function getTemplateFileName() { return strtr( CRM_Utils_System::getClassName($this), - array( + [ '_' => DIRECTORY_SEPARATOR, '\\' => DIRECTORY_SEPARATOR, - ) + ] ) . '.tpl'; } @@ -420,8 +420,8 @@ class CRM_Core_Page { * @throws \CiviCRM_API3_Exception */ protected function assignFieldMetadataToTemplate($entity) { - $fields = civicrm_api3($entity, 'getfields', array('action' => 'get')); - $dateFields = array(); + $fields = civicrm_api3($entity, 'getfields', ['action' => 'get']); + $dateFields = []; foreach ($fields['values'] as $fieldName => $fieldMetaData) { if (isset($fieldMetaData['html']) && CRM_Utils_Array::value('type', $fieldMetaData['html']) == 'Select Date') { $dateFields[$fieldName] = CRM_Utils_Date::addDateMetadataToField($fieldMetaData, $fieldMetaData);