Use PascalCase with CRM_Core_Form::addEntityRef
[civicrm-core.git] / CRM / Event / Badge / NameTent.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28
29 /*
30 * Copyright (C) 2010 Tech To The People
31 * Licensed to CiviCRM under the Academic Free License version 3.0.
32 *
33 */
34
35 /**
36 *
37 * @package CRM
38 *
39 */
40 class CRM_Event_Badge_NameTent extends CRM_Event_Badge {
41 /**
42 */
43 public function __construct() {
44 parent::__construct();
45 // A4
46 $pw = 297;
47 $ph = 210;
48 $this->lMargin = 10;
49 $this->tMargin = 0;
50 $w = $pw - 2 * $this->lMargin;
51 $h = $ph - 2 * $this->tMargin;
52 $this->format = array(
53 'name' => 'A4 horiz',
54 'paper-size' => 'A4',
55 'metric' => 'mm',
56 'lMargin' => 0,
57 'tMargin' => 0,
58 'NX' => 1,
59 'NY' => 1,
60 'SpaceX' => 0,
61 'SpaceY' => 0,
62 'width' => $w,
63 'height' => $h,
64 'font-size' => 36,
65 );
66 // $this->setDebug ();
67 }
68
69 public function pdfExtraFormat() {
70 $this->pdf->setPageFormat('A4', 'L');
71 }
72
73 /**
74 * @param $participant
75 */
76 protected function writeOneSide(&$participant) {
77 $this->pdf->SetXY(0, $this->pdf->height / 2);
78 $this->printBackground(TRUE);
79 $txt = $participant['display_name'];
80 $this->pdf->SetXY(0, $this->pdf->height / 2 + 20);
81 $this->pdf->SetFontSize(54);
82 $this->pdf->Write(0, $txt, NULL, NULL, 'C');
83 $this->pdf->SetXY(0, $this->pdf->height / 2 + 50);
84 $this->pdf->SetFontSize(36);
85 $this->pdf->Write(0, $participant['current_employer'], NULL, NULL, 'C');
86 }
87
88 /**
89 * @param $participant
90 */
91 public function generateLabel($participant) {
92 $this->writeOneSide($participant);
93 $this->pdf->StartTransform();
94 $this->pdf->Rotate(180, $this->pdf->width / 2 + $this->pdf->marginLeft, $this->pdf->height / 2);
95 $this->writeOneSide($participant);
96 $this->pdf->StopTransform();
97 }
98
99 }