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/HTML/Tabla.php';
31 * Libreria que crea un marco estandar para los pdfs.
33 class MECON_PDF_Marco extends MECON_HTML_Tabla {
37 * @var Object MECON_PDF
43 * Archivo de configuracion de medidas
47 var $_conf = array ();
50 * Tamanio de las paginas.
51 * @var string $tamanio
57 * Orientacion (portrait o landscape).
58 * @var sting $orientacion
61 var $_orientacion = "portrait";
68 var $logo = '/home/mmarrese/public_html/meconlib/www/images/pdf_logo.jpg';
69 //@FIXME Ponener el path del logo por defecto
73 * @var bool $paginador
76 var $paginador = true;
79 * Fecha. Si es true se pone la fecha del servidor, si es false no se pone
80 * nada, en caso contrario se pone lo que haya en esta variable.
88 * @var string $seccion
95 * @var string $subseccion
98 var $subseccion = 'Ministerio de Economia';
102 * @var string $string
109 * @var string $subtitulo
112 var $subtitulo = true;
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->_pdf =& new MECON_PDF;
125 $this->_tamanio = $tam;
126 $this->_orientacion = $ori;
127 $this->_conf = include 'MECON/PDF/Marco/medidas.php' ;
128 $this->_conf = $this->_conf[$tam][$ori];
132 * Funcion que agrega el logo al encabezado de una pagina.
137 function _addLogo() {
138 $conf = $this->_conf['encabezado'];
140 $this->_pdf->addImage($this->logo, $conf['logo']['X'],
141 $conf['logo']['Y'], null, 'jpg');
146 * Funcion que agrega la seccion al encabezado de una pagina.
151 function _addSeccion() {
152 $conf = $this->_conf['encabezado'];
153 if ($this->seccion) {
154 $tmp = $this->_pdf->strlen($this->seccion, $conf['seccion']);
155 $tmp2 = $conf['linea2']['Xi'] - $conf['linea1']['Xi'];
157 $this->seccion = $this->_pdf->wrapLine ($this->seccion, $tmp2,
159 $tmp = $this->_pdf->strlen($this->seccion, $conf['seccion']);
161 $init = $conf['linea1']['Xi'] + ( $conf['linea2']['Xi']
162 - $conf['linea1']['Xi'] - $tmp) / 2;
163 $this->_pdf->addText($init, $conf['seccion']['Y'], $this->seccion, $conf['seccion']);
168 * Funcion que agrega la subseccion al encabezado de una pagina.
173 function _addSubSeccion() {
174 $conf = $this->_conf['encabezado'];
175 if ($this->subseccion) {
176 $tmp = $this->_pdf->strlen($this->subseccion, $conf['subseccion']);
177 $tmp2 = $conf['linea2']['Xi'] - $conf['linea1']['Xi'];
179 $this->subseccion = $this->_pdf->wrapLine ($this->subseccion, $tmp2,
180 $conf['subseccion']);
181 $tmp = $this->_pdf->strlen($this->subseccion, $conf['subseccion']);
183 $init = $conf['linea1']['Xi'] + ( $conf['linea2']['Xi']
184 - $conf['linea1']['Xi'] - $tmp) / 2;
185 $this->_pdf->addText($init, $conf['subseccion']['Y'], $this->subseccion,
186 $conf['subseccion']);
191 * Funcion que agrega el paginador al encabezado de una pagina.
196 function _addPager() {
197 $conf = $this->_conf['encabezado'];
198 if ($this->paginador) {
199 $txt = 'Pagina '.$this->_pdf->numPage().' de '.
200 $this->_pdf->countPages();
201 $tmp = $this->_pdf->strlen($txt, $conf['paginador']);
202 $init = $conf['linea2']['Xi'] + ( $conf['Xf']
203 - $conf['linea2']['Xi'] - $tmp) / 2;
204 $this->_pdf->addText($init, $conf['paginador']['Y'], $txt,
210 * Funcion que permite agregar la fecha al encabezado de una pagina.
215 function _addDate() {
216 $conf = $this->_conf['encabezado'];
218 if ($this->fecha === true) {
219 $this->fecha = date("d/m/Y");
221 $tmp = $this->_pdf->strlen($this->fecha, $conf['fecha']);
222 $init = $conf['linea2']['Xi'] + ( $conf['Xf']
223 - $conf['linea2']['Xi'] - $tmp) / 2;
224 $this->_pdf->addText($init, $conf['fecha']['Y'], $this->fecha,
230 * Funcion que arma el recuadro del encabezado de las paginas.
235 function _addHeaderRectangle() {
236 $conf = $this->_conf['encabezado'];
238 $this->_pdf->addRectangle ($conf['Yi'], $conf['Xi'], $conf['Yf'],
240 $this->_pdf->addLine($conf['linea1']['Xi'], $conf['linea1']['Yi'],
241 $conf['linea1']['Xf'], $conf['linea1']['Yf']);
242 $this->_pdf->addLine($conf['linea2']['Xi'], $conf['linea2']['Yi'],
243 $conf['linea2']['Xf'], $conf['linea2']['Yf']);
247 * Funcion que permite agregar el titulo a una pagina.
252 function _addTitle() {
253 $conf = $this->_conf['titulo'];
255 $tmp = $this->_pdf->strlen($this->titulo, $conf);
256 $tmp2 = $this->_conf['Xf'] + abs($this->_conf['Xi']);
258 $this->titulo = $this->_pdf->wrapLine ($this->titulo, $tmp2,
260 $tmp = $this->_pdf->strlen($this->titulo, $conf);
262 $init = $this->_conf['Xi'] + ($tmp2 - $tmp) / 2;
263 $this->_pdf->addText($init, $conf['Y'], $this->titulo,
269 * Funcion que permite agregar el subtitulo a una pagina.
274 function _addSubTitle() {
275 $conf = $this->_conf['subtitulo'];
276 if ($this->subtitulo) {
277 $tmp = $this->_pdf->strlen($this->subtitulo, $conf);
278 $tmp2 = $this->_conf['Xf'] + abs($this->_conf['Xi']);
280 $this->subtitulo = $this->_pdf->wrapLine ($this->subtitulo, $tmp2,
282 $tmp = $this->_pdf->strlen($this->subtitulo, $conf);
284 $init = $this->_conf['Xi'] + ($tmp2 - $tmp) / 2;
285 $this->_pdf->addText($init, $conf['Y'], $this->subtitulo,
291 * Funcion que agrega la informacion del marco a la pagina actual.
293 * @param bool $title Muetra o no el titulo.
294 * @param bool $subtitle Muestra o no el subtitulo.
299 function buildPage($title = true, $subtitle = true) {
301 $this->_addSeccion();
302 $this->_addSubseccion();
305 $this->_addHeaderRectangle();
310 $this->_addSubTitle();