-
- $this->_titulo = new Titulo ($this->_configuracion['titulo_sistema']);
- $this->_copete = new Copete ($this->_configuracion['directorios']['imagenes']);
- $this->_menu = new MenuPrincipal ($this->_configuracion);
- $this->_pie = new Pie ($this->_configuracion);
- $this->_contenido = array ();
- $this->_espacios = true;
- $this->_titulo2 = '';
- $this->_menuVertical = null;
- }
- // -X2C
-
-
-
- // +X2C Operation 30
- /**
- * Funcion que permite agregar archivos de script al sistema, ademas del generico.
- *
- * @param string $archivo Nombre del archivo a incluir.
- *
- * @return void
- * @access public
- */
- function agregarScript($archivo) // ~X2C
- {
- $tmp = $this->_directorio.SCRIPT_DIR_BASE.$archivo;
- $this->addScript($tmp);
- }
- // -X2C
-
- // +X2C Operation 31
- /**
- * Funcion que permite agregar archivos de estilo al sistema, ademas del generico.
- *
- * @param string $archivo Nombre del archivo a incluir.
- *
- * @return void
- * @access public
- */
- function agregarEstilo($archivo) // ~X2C
- {
- $tmp = $this->_directorio.ESTILO_DIR_BASE.$archivo;
- $this->addStyleSheet($tmp);
+ //Agrego el objeto permiso a la configuracion
+ if (@$obj_permiso) {
+ $this->_configuracion['obj_permiso'] = $obj_permiso;
+ }
+ //Agrego el estilo y el script genericos
+ $this->addScript(SCRIPT_DIR_BASE.SCRIPT_GENERICO);
+ $this->addStyleSheet(ESTILO_DIR_BASE.ESTILO_GENERICO);
+ //Seteo el titulo
+ $this->setTitle($this->_configuracion['titulo_sistema']);