require_once 'MECON/Marco/MenuVertical.php';
require_once 'MECON/Marco/MenuOculto.php';
-// +X2C Class 16 :Seccion
+// +X2C Class 16 :MECON_Marco_Seccion
/**
* Clase seccion para el manejo de las secciones
*
* @package MECON_Marco
* @access public
*/
-class Seccion extends Pagina {
+class MECON_Marco_Seccion extends MECON_Marco_Pagina {
/**
* Nombre de la seccion.
*
*
* @return void
* @access public
- * @static
*/
- function Seccion($seccion, $configuracion) // ~X2C
+ function MECON_Marco_Seccion($seccion, $configuracion) // ~X2C
{
$this->_nombre = @strval($seccion['nombre']);
$imgComun = @strval($seccion['imagenComun']);
$imgSelect = @strval($seccion['imagenSelect']);
$this->_tipoMenu = @strval($seccion['tipoMenu']);
if (@$seccion['link']) {
- parent::Pagina($seccion['link']);
+ parent::MECON_Marco_Pagina($seccion['link']);
}
- $this->_imagen = new ImagenAnimada($imgComun, $imgMouseOn, $imgSelect,
- $configuracion['directorios']['imagenes'], $this->_nombre,
- $configuracion['directorios']['root'].'/'.$this->_link);
+ $this->_imagen = new MECON_Marco_ImagenAnimada($imgComun, $imgMouseOn, $imgSelect,
+ $configuracion['directorios']['imagenes'], $this->_nombre,
+ $configuracion['directorios']['root'].'/'.$this->_link);
if (!is_null($configuracion)) {
$this->_configuracion = $configuracion;
}
*/
function toHtml($link_sel) // ~X2C
{
- if (isset($_SESSION['deshabilitar_links']) && $_SESSION['deshabilitar_links']) {
+ if (!$this->_configuracion['links']) {
$this->_imagen->setHabilitada(false);
}
if ($this->verifSeccionSeleccionada($link_sel)) {
function _cargarHijos($hijos) // ~X2C
{
if ($this->_tipoMenu == 'vertical'){
- $tmp = new MenuVertical($this->_configuracion);
+ $tmp = new MECON_Marco_MenuVertical($this->_configuracion);
}
elseif ($this->_tipoMenu == 'horizontal') {
- $tmp = new MenuHorizontal($this->_configuracion);
+ $tmp = new MECON_Marco_MenuHorizontal($this->_configuracion);
}
else {
- $tmp = new MenuOculto($this->_configuracion);
+ $tmp = new MECON_Marco_MenuOculto($this->_configuracion);
}
foreach ($hijos as $hijo) {
$tmp->agregarComponente($hijo);
{
$style = "text-decoration:none";
- if (isset($_SESSION['deshabilitar_links']) && $_SESSION['deshabilitar_links']) {
+ if (!$this->_configuracion['links']) {
$link_start = '';
$link_end = '';
}
}
// -X2C
-} // -X2C Class :Seccion
+} // -X2C Class :MECON_Marco_Seccion
?>
\ No newline at end of file