X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FEvent%2FBadge%2FLogo5395.php;h=2343909174f5327c4943670b9287183231cae274;hb=8c20952c7e9195ff138ba1d9515eefec74312586;hp=ba6fe5b8bde23c6b232baffa936945294aa4d999;hpb=b2ac9e9ca74be7f852e37e0dfbf0e77627471c4d;p=civicrm-core.git diff --git a/CRM/Event/Badge/Logo5395.php b/CRM/Event/Badge/Logo5395.php index ba6fe5b8bd..2343909174 100644 --- a/CRM/Event/Badge/Logo5395.php +++ b/CRM/Event/Badge/Logo5395.php @@ -4,21 +4,30 @@ * Class CRM_Event_Badge_Logo5395 */ class CRM_Event_Badge_Logo5395 extends CRM_Event_Badge { + /** - * */ public function __construct() { parent::__construct(); // A4 - $pw = 210; - $ph = 297; - $h = 59.2; - $w = 85.7; - $this->format = array( - 'name' => 'Avery 5395', 'paper-size' => 'A4', 'metric' => 'mm', 'lMargin' => 13.5, - 'tMargin' => 3, 'NX' => 2, 'NY' => 4, 'SpaceX' => 15, 'SpaceY' => 8.5, - 'width' => $w, 'height' => $h, 'font-size' => 12, - ); + $pw = 210; + $ph = 297; + $h = 59.2; + $w = 85.7; + $this->format = [ + 'name' => 'Avery 5395', + 'paper-size' => 'A4', + 'metric' => 'mm', + 'lMargin' => 13.5, + 'tMargin' => 3, + 'NX' => 2, + 'NY' => 4, + 'SpaceX' => 15, + 'SpaceY' => 8.5, + 'width' => $w, + 'height' => $h, + 'font-size' => 12, + ]; $this->lMarginLogo = 20; $this->tMarginName = 20; // $this->setDebug (); @@ -31,7 +40,13 @@ class CRM_Event_Badge_Logo5395 extends CRM_Event_Badge { $x = $this->pdf->GetAbsX(); $y = $this->pdf->GetY(); $this->printBackground(TRUE); - $this->pdf->SetLineStyle(array('width' => 0.1, 'cap' => 'round', 'join' => 'round', 'dash' => '2,2', 'color' => array(0, 0, 200))); + $this->pdf->SetLineStyle([ + 'width' => 0.1, + 'cap' => 'round', + 'join' => 'round', + 'dash' => '2,2', + 'color' => [0, 0, 200], + ]); $this->pdf->SetFontSize(9); $this->pdf->MultiCell($this->pdf->width - $this->lMarginLogo, 0, $participant['event_title'], $this->border, "L", 0, 1, $x + $this->lMarginLogo, $y); @@ -45,4 +60,5 @@ class CRM_Event_Badge_Logo5395 extends CRM_Event_Badge { $this->pdf->SetFontSize(15); $this->pdf->MultiCell($this->pdf->width, 0, $participant['current_employer'], $this->border, "C", 0, 1, $x, $this->pdf->getY()); } + }