Notification for Updation not shown after Save button is clicked on Manage Event...
[civicrm-core.git] / CRM / Event / Badge.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
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 */
00be9182 49 public function __construct() {
6a488035
TO
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 */
00be9182 61 public function setDebug($debug = TRUE) {
6a488035
TO
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 /**
100fef9d 73 * Create the labels (pdf)
6a488035
TO
74 * It assumes the participants are from the same event
75 *
76 * @param array $participants
77 *
78 * @return null
6a488035
TO
79 */
80 public function run(&$participants) {
81 // fetch the 1st participant, and take her event to retrieve its attributes
82 $participant = reset($participants);
83 $eventID = $participant['event_id'];
84 $this->event = self::retrieveEvent($eventID);
85 //call function to create labels
86 self::createLabels($participants);
87 CRM_Utils_System::civiExit(1);
88 }
89
0cf587a7 90 /**
100fef9d 91 * @param int $eventID
0cf587a7
EM
92 *
93 * @return CRM_Event_BAO_Event|null
94 */
6a488035
TO
95 protected function retrieveEvent($eventID) {
96 $bao = new CRM_Event_BAO_Event();
97 if ($bao->get('id', $eventID)) {
98 return $bao;
99 }
100 return NULL;
101 }
102
0cf587a7 103 /**
100fef9d 104 * @param int $eventID
0cf587a7
EM
105 * @param bool $img
106 *
107 * @return string
108 */
00be9182 109 public function getImageFileName($eventID, $img = FALSE) {
6a488035
TO
110 global $civicrm_root;
111 $path = "CRM/Event/Badge";
112 if ($img == FALSE) {
113 return FALSE;
114 }
115 if ($img == TRUE) {
116 $img = get_class($this) . "." . $this->imgExtension;
117 }
118
81733948
DG
119 // CRM-13235 - leverage the Smarty path to get all templates directories
120 $template = CRM_Core_Smarty::singleton();
121 if (isset($template->template_dir) && $template->template_dir) {
122 $dirs = is_array( $template->template_dir ) ? $template->template_dir : array($template->template_dir);
123 foreach ($dirs as $dir) {
124 foreach (array( "$dir/$path/$eventID/$img", "$dir/$path/$img") as $imgFile) {
125 if (file_exists($imgFile)) {
126 return $imgFile;
127 }
128 }
129 }
130 } else {
131 $imgFile = 'No template directories defined anywhere??';
6a488035
TO
132 }
133
134 // not sure it exists, but at least will display a meaniful fatal error in debug mode
135 return $imgFile;
136 }
137
0cf587a7
EM
138 /**
139 * @param bool $img
140 */
00be9182 141 public function printBackground($img = FALSE) {
6a488035
TO
142 $x = $this->pdf->GetAbsX();
143 $y = $this->pdf->GetY();
144 if ($this->debug) {
145 $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))));
146 }
147 $img = $this->getImageFileName($this->event->id, $img);
148 if ($img) {
149 $imgsize = getimagesize($img);
150 // mm
151 $f = $this->imgRes / 25.4;
152 $w = $imgsize[0] / $f;
153 $h = $imgsize[1] / $f;
154 $this->pdf->Image($img, $this->pdf->GetAbsX(), $this->pdf->GetY(), $w, $h, strtoupper($this->imgExtension), '', '', FALSE, 72, '', FALSE, FALSE, $this->debug, FALSE, FALSE, FALSE);
155 }
156 $this->pdf->SetXY($x, $y);
157 }
158
159 /**
100fef9d 160 * This is supposed to be overrided
6a488035
TO
161 **/
162 public function generateLabel($participant) {
163 $txt = "{$this->event['title']}
164{$participant['display_name']}
165{$participant['current_employer']}";
166
167 $this->pdf->MultiCell($this->pdf->width, $this->pdf->lineHeight, $txt);
168 }
169
00be9182 170 public function pdfExtraFormat() {}
6a488035
TO
171
172 /**
100fef9d 173 * Create labels (pdf)
6a488035 174 *
c490a46a 175 * @param array $participants
6a488035
TO
176 *
177 * @return null
6a488035 178 */
00be9182 179 public function createLabels(&$participants) {
6a488035
TO
180
181 $this->pdf = new CRM_Utils_PDF_Label($this->format, 'mm');
182 $this->pdfExtraFormat();
183 $this->pdf->Open();
184 $this->pdf->setPrintHeader(FALSE);
185 $this->pdf->setPrintFooter(FALSE);
186 $this->pdf->AddPage();
187 $this->pdf->AddFont('DejaVu Sans', '', 'DejaVuSans.php');
188 $this->pdf->SetFont('DejaVu Sans');
189 $this->pdf->SetGenerator($this, "generateLabel");
190
191 foreach ($participants as $participant) {
192 $this->pdf->AddPdfLabel($participant);
193 }
194 $this->pdf->Output($this->event->title . '.pdf', 'D');
195 }
196}