'width' => $n * $tabulados,
'height' => '10'
);
- $margen = new HTML_Image('/MECON/images/blanco.gif', str_repeat(' ', $n), $atr);
- $margen = $margen->toHtml();
+ $margen = ' ';
+ if ($n) {
+ $margen = new HTML_Image('/MECON/images/blanco.gif', str_repeat(' ', $n), $atr);
+ $margen = $margen->toHtml();
+ }
$imagen = '';
if (@$bullets[$n]) {
- $imagen = new HTML_Image($bullets[$n], @$alts[$n], $atr);
+ $imagen = new HTML_Image($bullets[$n], @$alts[$n]);
$imagen = $imagen->toHtml();
}
foreach ($dat as $e) {
$titulo = $margen.$imagen.$e['titulo'];
- if(isset($e['activado']) && $e['activado'] != 0) $class = 'menu_activo';
+ if(isset($e['activo']) && $e['activo'] != 0) $class = 'menu_activo';
else $class = $classes[$n];
if(!is_null($e['link'])) {
$link = $e['link'];
foreach ($dat as $e) {
// Si no tiene ID o esta activo y se filtran los activos, se
// continua con el proximo item.
- if (!@$e['id'] or $filtrarActivos and @$e['activado']) {
+ if (!@$e['id'] or $filtrarActivos and @$e['activo']) {
continue;
}
$array[$e['id']] = str_repeat(' ', $n) . $e['titulo'];
* Activa un nodo del árbol.
*
* @param int $id Id del nodo a modificar.
- * @param bool $activado Nuevo valor, true si está activado, false si no.
+ * @param bool $activo Nuevo valor, true si está activo, false si no.
*
* @return bool True si se pudo modificar.
*/
- function setActivado($id, $activado = 1) {
- return $this->modificarNodo($this->datos, $id, 'activado', $activado);
+ function setActivo($id, $activo = 1) {
+ return $this->modificarNodo($this->datos, $id, 'activo', $activo);
}
/**