define ('MENU_SERIALIZADO' , 'MenuSerializado');
define ('ARRAYSECCIONES_SERIALIZADO', 'ArraySeccionesSerializado');
-// +X2C Class 14 :Menu
+// +X2C Class 14 :MECON_Marco_Menu
/**
* Clase para el manejo de los menues y secciones de los sistemas.
*
* @package MECON_Marco
* @access public
*/
-class Menu {
+class MECON_Marco_Menu {
/**
* Array con la configuracion de las secciones del sistema;.
*
* @return void
* @access public
*/
- function Menu($configuracion = null) // ~X2C
+ function MECON_Marco_Menu($configuracion = null) // ~X2C
{
$this->_componentes = array (); //Inicializo vacio el array de componentes del menu
$this->_componentesVertical = array (); //Inicializo vacio el array de componentes del menu
$cuenta = count ($confSec);
$i = 1;
foreach ($confSec as $sec) {
- $tmp = new Seccion ($sec, $this->_configuracion);
+ $tmp = new MECON_Marco_Seccion ($sec, $this->_configuracion);
array_push($this->_componentes,$tmp->toHtml($linksel));
if ($cuenta == $i) {
$ultimo = 1;
}
// -X2C
-} // -X2C Class :Menu
+} // -X2C Class :MECON_Marco_Menu
?>
\ No newline at end of file