]> git.llucax.com Git - mecon/meconlib.git/blobdiff - lib/MECON/Marco.php
Primer intento de arreglar los bullets.
[mecon/meconlib.git] / lib / MECON / Marco.php
index 9f29747483cd625353fa0d948162eec79cffb86e..9a311c863b5a1be95c5f3baed0959f1ebfb67480 100644 (file)
@@ -1,28 +1,28 @@
-<?php
-// vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4:
-// +----------------------------------------------------------------------+
-// | PHP Version 4                                                        |
-// +----------------------------------------------------------------------+
-// | Copyright (c) 1997-2003 The PHP Group                                |
-// +----------------------------------------------------------------------+
-// | This source file is subject to version 2.02 of the PHP license,      |
-// | that is bundled with this package in the file LICENSE, and is        |
-// | available at through the world-wide-web at                           |
-// | http://www.php.net/license/2_02.txt.                                 |
-// | If you did not receive a copy of the PHP license and are unable to   |
-// | obtain it through the world-wide-web, please send a note to          |
-// | license@php.net so we can mail you a copy immediately.               |
-// +----------------------------------------------------------------------+
-// | Created: Mon Apr 14 16:23:22 2003
-// | Author:  Martin Marrese <mmarre@mecon.gov.ar>
-// +----------------------------------------------------------------------+
-//
-// $Id$
-// $Author$
-// $URL$
-// $Date$
-// $Rev$
-//
+<?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 textwidth=80:
+-------------------------------------------------------------------------------
+                             Ministerio de Economía
+                                    meconlib
+-------------------------------------------------------------------------------
+This file is part of meconlib.
+
+meconlib is free software; you can redistribute it and/or modify it under
+the terms of the GNU General Public License as published by the Free
+Software Foundation; either version 2 of the License, or (at your option)
+any later version.
+
+meconlib is distributed in the hope that it will be useful, but WITHOUT
+ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+You should have received a copy of the GNU General Public License; if not,
+write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+Boston, MA  02111-1307  USA
+-------------------------------------------------------------------------------
+Creado: Mon Apr 14 16:23:22 2003
+Autor:  Martin Marrese <mmarre@mecon.gov.ar>
+-------------------------------------------------------------------------------
+$Id$
+-----------------------------------------------------------------------------*/
 
 require_once 'PEAR.php';
 require_once 'MECON/Marco/Copete.php';
@@ -36,17 +36,17 @@ require_once 'HTML/Page.php';
 require_once 'HTML/Table.php';
 
 //Defino los directorios por default
-define ('DIR_IMAGENES' , '/www/images');
-define ('DIR_ESTILOS'  , '/www/css');
-define ('DIR_JS'       , '/www/js');
+define ('DIR_IMAGENES' , 'images');
+define ('DIR_ESTILOS'  , 'css');
+define ('DIR_JS'       , 'js');
 define ('DIR_WWW'      , 'www');
 define ('DIR_CACHE'    , '/tmp');
 //
 //Defino las constantes
-define ('SCRIPT_DIR_BASE'  , '/www/js/');
-define ('ESTILO_DIR_BASE'  , '/www/css/');
-define ('SCRIPT_GENERICO'  , 'script.js');
-define ('ESTILO_GENERICO'  , 'estilos.css');
+define ('SCRIPT_DIR_BASE'  , '/MECON/js/');
+define ('ESTILO_DIR_BASE'  , '/MECON/css/');
+define ('SCRIPT_GENERICO'  , 'general_script.js');
+define ('ESTILO_GENERICO'  , 'general_estilos.css');
 //
 
 // +X2C Class 3 :Marco
@@ -54,6 +54,7 @@ define ('ESTILO_GENERICO'  , 'estilos.css');
  * Clase que se encarga del manejo del marco en general en los sistemas de intranet.
 Trabaja de forma general, llamando a los demas objetos para la realizacion del marco.
  *
+ * @package MECON
  * @access public
  */
 class Marco extends HTML_Page {
@@ -113,6 +114,22 @@ class Marco extends HTML_Page {
      */
     var $_contenido;
 
+    /**
+     * Indica si hay que agregar espacios o no entre los componentes del menu de secciones y el contenido de la pagina, asi como entre la pagina y el pie de pagina
+     *
+     * @var    bool $espacios
+     * @access private
+     */
+    var $_espacios;
+
+    /**
+     * Menu vertical para agregar en la pantalla.
+     *
+     * @var    mixed $menuVertical
+     * @access private
+     */
+    var $_menuVertical;
+
     // ~X2C
 
     // +X2C Operation 26
@@ -140,9 +157,9 @@ class Marco extends HTML_Page {
         $this->_menu          = new MenuPrincipal   ($this->_configuracion);
         $this->_pie           = new Pie             ($this->_configuracion);
         $this->_contenido     = array ();
-        $this->_contenido[] = '<br>';
-
+        $this->_espacios      = true;
         $this->_titulo2 = ''; 
+        $this->_menuVertical = null;
     }
     // -X2C
 
@@ -275,10 +292,11 @@ class Marco extends HTML_Page {
      */
     function _body_display() // ~X2C
     {
-        $this->_contenido[] = '<br>';
-        $body = array ( 'copete' => $this->_copete->toHtml(),
-                        'body'   => $this->_contenido,
-                        'pie'    => $this->_pie->toHtml(),
+        $body = array ( 'copete'       => $this->_copete->toHtml(),
+                        'espacios'     => $this->_espacios,
+                        'body'         => $this->_contenido,
+                        'menuVertical' => $this->_menuVertical,
+                        'pie'          => $this->_pie->toHtml(),
                       );
         $this->_menu->addBody($body);        
         $this->addBodyContent($this->_menu->toHtml());
@@ -296,10 +314,40 @@ class Marco extends HTML_Page {
      */
     function addTitle($titulo) // ~X2C
     {
-        $this->_titulo2 = ' - '.$titulo;
+        $this->_titulo2.= ' - '.$titulo;
+    }
+    // -X2C
+
+    // +X2C Operation 207
+    /**
+     * Setea los espacios entre el menu principal el body y el pie de las paginas
+     *
+     * @param  bool $espacios Si es verdadero agrega los espacios, sino los elimina
+     *
+     * @return void
+     * @access public
+     */
+    function setEspacios($espacios = true) // ~X2C
+    {
+        $this->_espacios = $espacios;
+    }
+    // -X2C
+
+    // +X2C Operation 214
+    /**
+     * Agrega un menu vertical a la izquierda en la pantalla. Por ahora solo funciona con MenuOculto
+     *
+     * @param  mixed $menuVertical Objeto u Html que representa el menu a mostrar.
+     *
+     * @return void
+     * @access public
+     */
+    function addMenuVertical($menuVertical) // ~X2C
+    {
+        $this->_menuVertical = $menuVertical;
     }
     // -X2C
 
 } // -X2C Class :Marco
 
-?>
+?>
\ No newline at end of file