X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=CRM%2FEvent%2FBadge%2FLogo.php;h=b6ca8b1bf216fade6fb97456d38197a141b827a4;hb=0ea79a6887c97d6682437c9432b708982631da60;hp=92e6bd12b5ddf75b4b5df410535c4ca92c3aadaf;hpb=92b0f883315c72514e629b1c9e37261b84186785;p=civicrm-core.git diff --git a/CRM/Event/Badge/Logo.php b/CRM/Event/Badge/Logo.php index 92e6bd12b5..b6ca8b1bf2 100644 --- a/CRM/Event/Badge/Logo.php +++ b/CRM/Event/Badge/Logo.php @@ -5,19 +5,27 @@ */ class CRM_Event_Badge_Logo extends CRM_Event_Badge { /** - * */ - function __construct() { + public function __construct() { parent::__construct(); // A4 - $pw = 210; - $ph = 297; - $h = 50; - $w = 75; + $pw = 210; + $ph = 297; + $h = 50; + $w = 75; $this->format = array( - 'name' => 'Sigel 3C', 'paper-size' => 'A4', 'metric' => 'mm', 'lMargin' => ($pw - $w * 2) / 2, - 'tMargin' => ($ph - $h * 5) / 2, 'NX' => 2, 'NY' => 5, 'SpaceX' => 0, 'SpaceY' => 0, - 'width' => $w, 'height' => $h, 'font-size' => 12, + 'name' => 'Sigel 3C', + 'paper-size' => 'A4', + 'metric' => 'mm', + 'lMargin' => ($pw - $w * 2) / 2, + 'tMargin' => ($ph - $h * 5) / 2, + 'NX' => 2, + 'NY' => 5, + 'SpaceX' => 0, + 'SpaceY' => 0, + 'width' => $w, + 'height' => $h, + 'font-size' => 12, ); $this->lMarginLogo = 20; $this->tMarginName = 20; @@ -31,7 +39,13 @@ class CRM_Event_Badge_Logo 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(array( + 'width' => 0.1, + 'cap' => 'round', + 'join' => 'round', + 'dash' => '2,2', + 'color' => array(0, 0, 200), + )); $this->pdf->SetFontSize(8); $this->pdf->MultiCell($this->pdf->width - $this->lMarginLogo, 0, $participant['event_title'], $this->border, "L", 0, 1, $x + $this->lMarginLogo, $y); @@ -45,5 +59,5 @@ class CRM_Event_Badge_Logo extends CRM_Event_Badge { $this->pdf->SetFontSize(10); $this->pdf->MultiCell($this->pdf->width, 0, $participant['current_employer'], $this->border, "C", 0, 1, $x, $this->pdf->getY()); } -} +}