X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FCore%2FPage.php;h=e8908fea50f1852ed4e70d1ad15e9859db3bc4e4;hb=358a1864ba3c5a3fc3ff65f03b3db045ea2199a8;hp=fe0f2b0732727357f70dfae760109868e3fa81cd;hpb=2aa6dd3f9e6f4f5d3b5f1c48f6c834464b01c394;p=civicrm-core.git diff --git a/CRM/Core/Page.php b/CRM/Core/Page.php index fe0f2b0732..e8908fea50 100644 --- a/CRM/Core/Page.php +++ b/CRM/Core/Page.php @@ -1,9 +1,9 @@ _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);