- $tmp = new 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);