Merge pull request #4500 from colemanw/CRM-15346
[civicrm-core.git] / CRM / Event / Badge.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
6a488035
TO
5 +--------------------------------------------------------------------+
6 | This file is a part of CiviCRM. |
7 | |
8 | CiviCRM is free software; you can copy, modify, and distribute it |
9 | under the terms of the GNU Affero General Public License |
10 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
11 | |
12 | CiviCRM is distributed in the hope that it will be useful, but |
13 | WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
15 | See the GNU Affero General Public License for more details. |
16 | |
17 | You should have received a copy of the GNU Affero General Public |
18 | License and the CiviCRM Licensing Exception along |
19 | with this program; if not, contact CiviCRM LLC |
20 | at info[AT]civicrm[DOT]org. If you have questions about the |
21 | GNU Affero General Public License or the licensing of CiviCRM, |
22 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
23 +--------------------------------------------------------------------+
24*/
25
26/*
27* Copyright (C) 2010 Tech To The People
28* Licensed to CiviCRM under the Academic Free License version 3.0.
29*
30*/
31
32/**
33 *
34 * @package CRM
06b69b18 35 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
36 * $Id$
37 *
38 */
39
40/**
41 * This class print the name badges for the participants
42 * It isn't supposed to be called directly, but is the parent class of the classes in CRM/Event/Badges/XXX.php
43 *
44 */
45class CRM_Event_Badge {
0cf587a7
EM
46 /**
47 *
48 */
6a488035
TO
49 function __construct() {
50 $this->style = array('width' => 0.1, 'cap' => 'round', 'join' => 'round', 'dash' => '2,2', 'color' => array(0, 0, 200));
51 $this->format = '5160';
52 $this->imgExtension = 'png';
53 $this->imgRes = 300;
54 $this->event = NULL;
55 $this->setDebug(FALSE);
56 }
57
0cf587a7
EM
58 /**
59 * @param bool $debug
60 */
6a488035
TO
61 function setDebug($debug = TRUE) {
62 if (!$debug) {
63 $this->debug = FALSE;
64 $this->border = 0;
65 }
66 else {
67 $this->debug = TRUE;
68 $this->border = "LTRB";
69 }
70 }
71
72 /**
73 * function to create the labels (pdf)
74 * It assumes the participants are from the same event
75 *
76 * @param array $participants
77 *
78 * @return null
79 * @access public
80 */
81 public function run(&$participants) {
82 // fetch the 1st participant, and take her event to retrieve its attributes
83 $participant = reset($participants);
84 $eventID = $participant['event_id'];
85 $this->event = self::retrieveEvent($eventID);
86 //call function to create labels
87 self::createLabels($participants);
88 CRM_Utils_System::civiExit(1);
89 }
90
0cf587a7
EM
91 /**
92 * @param $eventID
93 *
94 * @return CRM_Event_BAO_Event|null
95 */
6a488035
TO
96 protected function retrieveEvent($eventID) {
97 $bao = new CRM_Event_BAO_Event();
98 if ($bao->get('id', $eventID)) {
99 return $bao;
100 }
101 return NULL;
102 }
103
0cf587a7
EM
104 /**
105 * @param $eventID
106 * @param bool $img
107 *
108 * @return string
109 */
6a488035
TO
110 function getImageFileName($eventID, $img = FALSE) {
111 global $civicrm_root;
112 $path = "CRM/Event/Badge";
113 if ($img == FALSE) {
114 return FALSE;
115 }
116 if ($img == TRUE) {
117 $img = get_class($this) . "." . $this->imgExtension;
118 }
119
81733948
DG
120 // CRM-13235 - leverage the Smarty path to get all templates directories
121 $template = CRM_Core_Smarty::singleton();
122 if (isset($template->template_dir) && $template->template_dir) {
123 $dirs = is_array( $template->template_dir ) ? $template->template_dir : array($template->template_dir);
124 foreach ($dirs as $dir) {
125 foreach (array( "$dir/$path/$eventID/$img", "$dir/$path/$img") as $imgFile) {
126 if (file_exists($imgFile)) {
127 return $imgFile;
128 }
129 }
130 }
131 } else {
132 $imgFile = 'No template directories defined anywhere??';
6a488035
TO
133 }
134
135 // not sure it exists, but at least will display a meaniful fatal error in debug mode
136 return $imgFile;
137 }
138
0cf587a7
EM
139 /**
140 * @param bool $img
141 */
6a488035
TO
142 function printBackground($img = FALSE) {
143 $x = $this->pdf->GetAbsX();
144 $y = $this->pdf->GetY();
145 if ($this->debug) {
146 $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))));
147 }
148 $img = $this->getImageFileName($this->event->id, $img);
149 if ($img) {
150 $imgsize = getimagesize($img);
151 // mm
152 $f = $this->imgRes / 25.4;
153 $w = $imgsize[0] / $f;
154 $h = $imgsize[1] / $f;
155 $this->pdf->Image($img, $this->pdf->GetAbsX(), $this->pdf->GetY(), $w, $h, strtoupper($this->imgExtension), '', '', FALSE, 72, '', FALSE, FALSE, $this->debug, FALSE, FALSE, FALSE);
156 }
157 $this->pdf->SetXY($x, $y);
158 }
159
160 /**
161 * this is supposed to be overrided
162 **/
163 public function generateLabel($participant) {
164 $txt = "{$this->event['title']}
165{$participant['display_name']}
166{$participant['current_employer']}";
167
168 $this->pdf->MultiCell($this->pdf->width, $this->pdf->lineHeight, $txt);
169 }
170
171 function pdfExtraFormat() {}
172
173 /**
174 * function to create labels (pdf)
175 *
da6b46f4
EM
176 * @param $participants
177 *
178 * @internal param array $contactRows assciated array of contact data
179 * @internal param string $format format in which labels needs to be printed
6a488035
TO
180 *
181 * @return null
182 * @access public
183 */
184 function createLabels(&$participants) {
185
186 $this->pdf = new CRM_Utils_PDF_Label($this->format, 'mm');
187 $this->pdfExtraFormat();
188 $this->pdf->Open();
189 $this->pdf->setPrintHeader(FALSE);
190 $this->pdf->setPrintFooter(FALSE);
191 $this->pdf->AddPage();
192 $this->pdf->AddFont('DejaVu Sans', '', 'DejaVuSans.php');
193 $this->pdf->SetFont('DejaVu Sans');
194 $this->pdf->SetGenerator($this, "generateLabel");
195
196 foreach ($participants as $participant) {
197 $this->pdf->AddPdfLabel($participant);
198 }
199 $this->pdf->Output($this->event->title . '.pdf', 'D');
200 }
201}
202