2 // vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
3 // +--------------------------------------------------------------------+
4 // | Ministerio de Econom� |
6 // +--------------------------------------------------------------------+
7 // | This file is part of Intranet. |
9 // | Intranet is free software; you can redistribute it and/or modify |
10 // | it under the terms of the GNU General Public License as published |
11 // | by the Free Software Foundation; either version 2 of the License, |
12 // | or (at your option) any later version. |
14 // | Intranet 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. See the GNU |
17 // | General Public License for more details. |
19 // | You should have received a copy of the GNU General Public License |
20 // | along with Hooks; if not, write to the Free Software Foundation, |
21 // | Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
22 // +--------------------------------------------------------------------+
23 // | Creado: Thu Jul 10 15:03:36 2003 |
24 // | Autor: Gonzalo Merayo <gmeray@mecon.gov.ar> |
25 // +--------------------------------------------------------------------+
27 // $Id: xmi2code.tpl.php 1 2003-06-23 18:29:20Z gmeray $
30 session_start();//FIXME esto va en algun otro lado...
32 define('PATH_RAIZ','/sistemas/intranet/');
34 require_once 'HTML_Copete.php';
37 require_once 'HTML/Page.php';
40 // +X2C Class 154 :HTML_DietMarco
44 class HTML_DietMarco extends HTML_Page {
56 function addTitle($title) // ~X2C
58 $this->_title .= ' - '.$title;
64 * @param string $seccion
65 * @param string $titulo
70 function HTML_DietMarco($seccion, $titulo) // ~X2C
72 parent::HTML_Page(array ('doctype'=>'HTML 4.01 Transitional',
73 'charset' => 'iso-8859-1',
78 $this->_title = 'Intranet';
79 $copete =& new HTML_Copete($seccion);
80 $copete->setTitulo($titulo);
81 $this->addStyleSheet(PATH_RAIZ.'css/dietmarco.css');
82 $this->addBodyContent($copete);
94 function addBodyContent($content) // ~X2C
96 if(method_exists($content, 'getcss'))
97 $this->addStyleSheet($content->getCSS());
98 parent::addBodyContent($content);
102 // +X2C Operation 179
109 function setTituloCopete($titulo) // ~X2C
114 } // -X2C Class :HTML_DietMarco