1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
2 -------------------------------------------------------------------------------
3 Ministerio de EconomÃa
5 -------------------------------------------------------------------------------
6 This file is part of meconlib.
8 meconlib is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2 of the License, or (at your option)
13 meconlib is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License; if not,
18 write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 Boston, MA 02111-1307 USA
20 -------------------------------------------------------------------------------
21 Creado: Fri Oct 24 16:34:11 2003
22 Autor: Martin Marrese <mmarre@mecon.gov.ar>
23 -------------------------------------------------------------------------------
25 -----------------------------------------------------------------------------*/
27 require_once 'MECON/PDF.php';
28 require_once 'MECON/PDF/Separador.php';
31 * Libreria que crea un marco estandar para los pdfs.
33 class MECON_PDF_Marco extends MECON_PDF {
36 * Objeto MECON_PDF_Separador que se utilizara por defecto.
37 * @var Object $separador
40 var $_separador_defecto;
43 * Array de objetos MECON_PDF_Contenido
44 * @var array $contenido
47 var $_contenido = array();
50 * Espacio dispobible en la pagina. Representa la coordenada Y a partir de
51 * la cual se puede comenzar a escribir el contenido.
52 * @var int $espacioDisponible
55 var $espacioDisponible;
66 * @var bool $paginador
69 var $paginador = true;
72 * Fecha. Si es true se pone la fecha del servidor, si es false no se pone
73 * nada, en caso contrario se pone lo que haya en esta variable.
81 * @var string $seccion
88 * @var string $subseccion
91 var $subseccion = 'Ministerio de Economia';
102 * @var string $subtitulo
108 * Excepciones al encabezado
109 * @var array $excepciones
112 var $_excepciones = array ();
117 * @param string $tam Tamanio de las hojas.
118 * @param string $ori Orientacion de las hojaz (portrait o landscape).
123 function MECON_PDF_Marco($tam = "a4", $ori = "portrait") {
124 $this->MECON_PDF($tam, $ori);
125 $this->tamanio = $tam;
127 $this->_separador_defecto =& new MECON_PDF_Separador();
131 * Funcion que setea los valores de conf para poder poner las cabeceras
133 * @param int $pagina numero del la pagina de la que debe setear loa
137 function _resetConf($pagina = null)
139 if(is_null($pagina));
140 $pagina = $this->numPage();
141 $tmp = include 'MECON/PDF/Marco/medidas.php' ;
142 $tmp = $tmp[$this->tamanio][$this->getOrientation($pagina)];
143 $tmp['Xi'] = $this->_config['Xi'];
144 $tmp['Yi'] = $this->_config['Yi'];
145 $tmp['Xf'] = $this->_config['Xf'];
146 $tmp['Yf'] = $this->_config['Yf'];
147 $this->_config = $tmp;
148 if (@$this->_config['encabezado']['logo']['path']) {
149 $this->logo = $this->_config['encabezado']['logo']['path'];
154 * Permite agregar nuevas paginas al pdf que se esta armando.
156 * @param string $pagina Tipo de pagina que se va a utilizar.
157 * @param string $orientacion Orientacion de la hoja
158 * @param bool $encabezado Indica si el encabezado debe ponerse en la
160 * @param string $seccion Seccion del encabezado para esta pagina nueva.
161 * @param string $subseccion SubSeccion del encabezado para esta pagina
167 function newPage($pagina = 'a4', $orientacion = null, $encabezado = true, $seccion = null, $subseccion =
170 parent::newPage($pagina, $orientacion);
172 $this->espacioDisponible = $this->_config['encabezado']['Yi'] - 27;
173 if ($this->countPages() === 1) {
174 if ($this->titulo || $this->subtitulo) {
175 $this->espacioDisponible -= 27;
178 if (!is_null($seccion)) {
179 $this->_excepciones[$this->numPage()]['seccion'] = $seccion;
181 if (!is_null($subseccion)) {
182 $this->_excepciones[$this->numPage()]['subseccion'] = $subseccion;
186 $this->espacioDisponible = $this->_config['encabezado']['Yf'];
187 $this->_excepciones[$this->countPages()]['nova'] = true;
193 * Funcion que agrega el logo al encabezado de una pagina.
198 function _addLogo() {
200 $conf = $this->_config['encabezado'];
202 $this->addImage($this->logo, $conf['logo']['X'],
203 $conf['logo']['Y'], null, 'jpg');
208 * Funcion que agrega la seccion al encabezado de una pagina.
213 function _addSeccion() {
215 $conf = $this->_config['encabezado'];
216 if ($this->seccion) {
217 $tmp = $this->strlen($this->seccion, $conf['seccion']);
218 $tmp2 = $conf['linea2']['Xi'] - $conf['linea1']['Xi'];
220 $this->seccion = $this->wrapLine ($this->seccion, $tmp2,
222 $tmp = $this->strlen($this->seccion, $conf['seccion']);
224 $init = $conf['linea1']['Xi'] + ( $conf['linea2']['Xi']
225 - $conf['linea1']['Xi'] - $tmp) / 2;
226 $this->addText($init, $conf['seccion']['Y'], $this->seccion,
232 * Funcion que agrega la subseccion al encabezado de una pagina.
237 function _addSubSeccion() {
239 $conf = $this->_config['encabezado'];
240 if ($this->subseccion) {
241 $tmp = $this->strlen($this->subseccion, $conf['subseccion']);
242 $tmp2 = $conf['linea2']['Xi'] - $conf['linea1']['Xi'];
244 $this->subseccion = $this->wrapLine ($this->subseccion, $tmp2,
245 $conf['subseccion']);
246 $tmp = $this->strlen($this->subseccion, $conf['subseccion']);
248 $init = $conf['linea1']['Xi'] + ( $conf['linea2']['Xi']
249 - $conf['linea1']['Xi'] - $tmp) / 2;
250 $this->addText($init, $conf['subseccion']['Y'], $this->subseccion,
251 $conf['subseccion']);
256 * Funcion que agrega el paginador al encabezado de una pagina.
261 function _addPager() {
263 $conf = $this->_config['encabezado'];
264 if ($this->paginador) {
265 $txt = 'Pagina '.$this->numPage().' de '.
267 $tmp = $this->strlen($txt, $conf['paginador']);
268 $init = $conf['linea2']['Xi'] + ( $conf['Xf']
269 - $conf['linea2']['Xi'] - $tmp) / 2;
270 $this->addText($init, $conf['paginador']['Y'], $txt,
276 * Funcion que permite agregar la fecha al encabezado de una pagina.
281 function _addDate() {
283 $conf = $this->_config['encabezado'];
285 if (is_a($this->fecha, 'Date')) {
286 $this->fecha = $this->fecha->format("%d/%m/%Y");
288 elseif ($this->fecha === true) {
289 $this->fecha = date("d/m/Y");
291 $tmp = $this->strlen($this->fecha, $conf['fecha']);
292 $init = $conf['linea2']['Xi'] + ( $conf['Xf']
293 - $conf['linea2']['Xi'] - $tmp) / 2;
294 $this->addText($init, $conf['fecha']['Y'], $this->fecha,
300 * Funcion que arma el recuadro del encabezado de las paginas.
305 function _addHeaderRectangle() {
307 $conf = $this->_config['encabezado'];
309 $this->addRectangle ($conf['Xi'], $conf['Yi'], $conf['Xf'],
311 $this->addLine($conf['linea1']['Xi'], $conf['linea1']['Yi'],
312 $conf['linea1']['Xf'], $conf['linea1']['Yf'], '');
313 $this->addLine($conf['linea2']['Xi'], $conf['linea2']['Yi'],
314 $conf['linea2']['Xf'], $conf['linea2']['Yf'], '');
318 * Funcion que permite agregar el titulo a una pagina.
323 function _addTitle() {
325 $conf = $this->_config['titulo'];
327 $tmp = $this->strlen($this->titulo, $conf);
328 $tmp2 = $this->getWidth();
330 $this->titulo = $this->wrapLine ($this->titulo, $tmp2,
332 $tmp = $this->strlen($this->titulo, $conf);
334 $init = ($tmp2 - $tmp) / 2;
335 $this->addText($init, $conf['Y'], $this->titulo,
341 * Funcion que permite agregar el subtitulo a una pagina.
346 function _addSubTitle() {
348 $conf = $this->_config['subtitulo'];
349 if ($this->subtitulo) {
350 $tmp = $this->strlen($this->subtitulo, $conf);
351 $tmp2 = $this->getWidth();
353 $this->subtitulo = $this->wrapLine ($this->subtitulo, $tmp2,
355 $tmp = $this->strlen($this->subtitulo, $conf);
357 $init = ($tmp2 - $tmp) / 2;
358 $this->addText($init, $conf['Y'], $this->subtitulo,
364 * Funcion que agrega el encabezado a la pagina actual.
366 * @param bool $title Muetra o no el titulo.
367 * @param bool $subtitle Muestra o no el subtitulo.
372 function _buildHeader($title = true, $subtitle = true) {
375 $this->_addSeccion();
376 $this->_addSubseccion();
379 $this->_addHeaderRectangle();
384 $this->_addSubTitle();
389 * Funcion que agrega el contenido al PDF.
394 function _buildContent() {
396 if ($this->_contenido) {
397 foreach ($this->_contenido as $cont) {
399 //MECON_PDF_Marco se pasa por referencia para que se agregen las
400 //paginas a medida que se van necesitando. Esto permite que varie el
401 //tipo de contenido que se agrega.
407 * Funcion que se encarga de transformar la informacion para que se genere
410 * @return pdffile Archivo PDF.
414 $this->_buildContent();
415 if ($this->getPages()) {
417 foreach ($this->getPages() as $page) {
418 $this->_pagina_actual = $page;
420 $sec = $this->seccion;
421 $subsec = $this->subseccion;
423 if (@$this->_excepciones[$this->numPage($page)]['seccion']) {
425 $this->_excepciones[$this->numPage($page)]['seccion'];
428 if (@$this->_excepciones[$this->numPage($page)]['subseccion']) {
430 $this->_excepciones[$this->numPage($page)]['subseccion'];
433 if (@!$this->_excepciones[$this->numPage($page)]['nova']) {
434 $this->_buildHeader($t, $t);
438 $this->seccion = $sec;
439 $this->subseccion = $subsec;
441 return parent::toPDF();
446 * Funcion que pemite agregar contenido al PDF.
448 * @param mixed $contenido Objeto contenido que se agrega.
449 * @param bool $separador Indicacion si hay que agregar un separador.
454 function addContent($contenido, $separador = true) {
455 //Me aseguro de poner el separador siempre y cuando no sea el primer
456 //objeto de la primer pagina.
458 $this->_contenido[] = $this->_separador_defecto;
460 $this->_contenido[] = $contenido;