var $_secciones = array();
/**
+ * Array de array con los componentes del menu en caso de ser este vertical
+ *
* @var string $componentesVertical
* @access private
*/
// +X2C Operation 56
/**
- * Constructor. Recibe como parametro el directorio en donde se encuentra el sistema.
+ * Recibe como parametro el directorio en donde se encuentra el sistema.
*
* @param array $configuracion Array con los datos de las secciones
*
cellspacing="0"
cellpadding="0"
border="0"');
+ $this->_tabla->setLineEnd('');
+ $this->_tabla->setTab('');
+
$this->_configuracion = $configuracion;
}
// -X2C
// +X2C Operation 76
/**
- * Funcion que obtiene el arrayde configuracion de secciones.
+ * Funcion que obtiene el array de configuracion de secciones.
*
* @return array
* @access private
$cuenta = count ($confSec);
$i = 1;
foreach ($confSec as $sec) {
- $tmp = new MECON_Marco_Seccion ($sec, $this->_configuracion);
- array_push($this->_componentes,$tmp->toHtml($linksel));
- if ($cuenta == $i) {
- $ultimo = 1;
+ //Veo si tiene permisos para ver la seccion
+ if (!@$this->_configuracion['obj_permiso'] || !@$sec['permisos']) {
+ $ver = true;
+ }
+ elseif ($this->_configuracion['obj_permiso']->tiene(@$sec['permisos'])) {
+ $ver = true;
+ }
+ else {
+ $ver = false;
+ }
+ if ($ver) {
+ $tmp = new MECON_Marco_Seccion ($sec, $this->_configuracion);
+ array_push($this->_componentes,$tmp->toHtml($linksel));
+ if ($cuenta == $i) {
+ $ultimo = 1;
+ }
+ array_push($this->_componentesVertical, $tmp->toHtmlVertical($linksel,$ultimo));
+ array_push($this->_secciones,$tmp);
}
- array_push($this->_componentesVertical, $tmp->toHtmlVertical($linksel,$ultimo));
$i++;
- array_push($this->_secciones,$tmp);
}
}
// -X2C
}
// -X2C
+ // +X2C Operation 222
+ /**
+ * Devuelve un string con el encabezado de la seccion
+ *
+ * @param string $titulo Titulo de la seccion
+ *
+ * @return string
+ * @access private
+ */
+ function _armarEncabezado($titulo) // ~X2C
+ {
+ return '<font face="Arial, Helvetica, sans-serif" size="3" color="#336699"><b>'.$titulo.'</b></font>';
+ }
+ // -X2C
+
} // -X2C Class :MECON_Marco_Menu
?>
\ No newline at end of file