+
+ /**
+ * DESC
+ *
+ * @param TIPO $dat DESC
+ * @param TIPO $n DESC
+ * @param TIPO $filtarActivos DESC
+ *
+ * @return string
+ * @access public
+ */
+ function expandirString($dat, $n, $filtrarActivos)
+ {
+ $str = '';
+ $tot = count($dat);
+ for ($i = 0; $i < $tot; $i++) {
+ $e = $dat[$i];
+ // 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['activo']) {
+ continue;
+ }
+ $indent = str_repeat('| ', $n);
+ if ($i == ($tot - 1)) {
+ $indent .= '`- ';
+ } else {
+ $indent .= '|- ';
+ }
+ $str .= $indent . $e['titulo'] . "\n";
+ if(@$e['sub']) {
+ $str .= $this->expandirString($e['sub'], $n + 1, $filtrarActivos);
+ }
+ }
+ return $str;
+ }
+
+ /**
+ * DESC
+ *
+ * @param bool $filtrarActivos DESC
+ *
+ * @return string
+ * @access public
+ */
+ function toString($filtrarActivos = true)
+ {
+ return $this->expandirString($this->datos, 0, $filtrarActivos);
+ }
+
+ /**
+ * Activa un nodo del árbol.
+ *
+ * @param int $id Id del nodo a modificar.
+ * @param bool $activo Nuevo valor, true si está activo, false si no.
+ *
+ * @return bool True si se pudo modificar.
+ * @access public
+ */
+ function setActivo($id, $activo = 1) {
+ return $this->modificarNodo($this->datos, $id, 'activo', $activo);
+ }
+
+ /**
+ * Modifica un nodo del array.
+ *
+ * @param array $datos Datos del árbol a modificar.
+ * @param int $id Id del elemento a modificar.
+ * @param string $key Clave del dato a modificar.
+ * @param mixed $val Nuevo valor.
+ *
+ * @return bool True si se pudo modificar.
+ * @access public
+ */
+ function modificarNodo(&$datos, $id, $key, $val) {
+ foreach (array_keys($datos) as $k) {
+ if (@$datos[$k]['id'] == $id) {
+ $datos[$k][$key] = $val;
+ return true;
+ } elseif (@$datos[$k]['sub']
+ and $this->modificarNodo($datos[$k]['sub'], $id, $key, $val)) {
+ return true;
+ }
+ }
+ return false;
+ }
+