X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FEvent%2FBadge.php;h=4600ff95d00e4fd588fb2cd643bf94c4ba00fa98;hb=5ec753e358cd1692934daa7f5bd99384097fdf8c;hp=94d51e15a8af76eec737cc18acae89a1e595b3b8;hpb=4ac1772d31cffe0b198aa491f4daad7cfa9f7c93;p=civicrm-core.git diff --git a/CRM/Event/Badge.php b/CRM/Event/Badge.php index 94d51e15a8..4600ff95d0 100644 --- a/CRM/Event/Badge.php +++ b/CRM/Event/Badge.php @@ -32,7 +32,7 @@ /** * * @package CRM - * @copyright CiviCRM LLC (c) 2004-2019 + * @copyright CiviCRM LLC https://civicrm.org/licensing * $Id$ * */ @@ -43,16 +43,17 @@ * */ class CRM_Event_Badge { + /** */ public function __construct() { - $this->style = array( + $this->style = [ 'width' => 0.1, 'cap' => 'round', 'join' => 'round', 'dash' => '2,2', - 'color' => array(0, 0, 200), - ); + 'color' => [0, 0, 200], + ]; $this->format = '5160'; $this->imgExtension = 'png'; $this->imgRes = 300; @@ -123,9 +124,9 @@ class CRM_Event_Badge { // CRM-13235 - leverage the Smarty path to get all templates directories $template = CRM_Core_Smarty::singleton(); if (isset($template->template_dir) && $template->template_dir) { - $dirs = is_array($template->template_dir) ? $template->template_dir : array($template->template_dir); + $dirs = is_array($template->template_dir) ? $template->template_dir : [$template->template_dir]; foreach ($dirs as $dir) { - foreach (array("$dir/$path/$eventID/$img", "$dir/$path/$img") as $imgFile) { + foreach (["$dir/$path/$eventID/$img", "$dir/$path/$img"] as $imgFile) { if (file_exists($imgFile)) { return $imgFile; } @@ -147,15 +148,15 @@ class CRM_Event_Badge { $x = $this->pdf->GetAbsX(); $y = $this->pdf->GetY(); if ($this->debug) { - $this->pdf->Rect($x, $y, $this->pdf->width, $this->pdf->height, 'D', array( - 'all' => array( - 'width' => 1, - 'cap' => 'round', - 'join' => 'round', - 'dash' => '2,10', - 'color' => array(255, 0, 0), - ), - )); + $this->pdf->Rect($x, $y, $this->pdf->width, $this->pdf->height, 'D', [ + 'all' => [ + 'width' => 1, + 'cap' => 'round', + 'join' => 'round', + 'dash' => '2,10', + 'color' => [255, 0, 0], + ], + ]); } $img = $this->getImageFileName($this->event->id, $img); if ($img) {