forked from pasosdeJesus/SIVeL
-
Notifications
You must be signed in to change notification settings - Fork 1
/
PresentaMenuPrincipal.php
123 lines (109 loc) · 2.82 KB
/
PresentaMenuPrincipal.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?php
// vim: set expandtab tabstop=4 shiftwidth=4 foldmethod=marker fileencoding=utf-8:
/**
* Presenta menu principal
*
* Basado en fuentes y documentación del paquete de Pear HTML_Menu_Renderer
*
* PHP version 5
*
* @category SIVeL
* @package SIVeL
* @author Vladimir Támara <[email protected]>
* @copyright 2004 Dominio público. Sin garantías.
* @license https://www.pasosdejesus.org/dominio_publico_colombia.html Dominio Público. Sin garantías.
* @version CVS: $Id: PresentaMenuPrincipal.php,v 1.17.2.1 2011/09/14 14:56:18 vtamara Exp $
* @link http://sivel.sf.net
* Acceso: SÓLO DEFINICIONES
*/
/**
* Generador de un menu HTML_Menu
*/
require_once 'HTML/Menu/Renderer.php';
/**
* Generador de un menu HTML_Menu
*
* @category SIVeL
* @package SIVeL
* @author Vladimir Támara <[email protected]>
* @license https://www.pasosdejesus.org/dominio_publico_colombia.html Dominio Público.
* @link http://sivel.sf.net/tec
*/
class PresentaMenuPrincipal extends HTML_Menu_Renderer
{
/**
* HTML generado para el menu
* @var string
*/
var $_html = '';
/**
* Termina el menú
*
* @param int $level profundidad actual en la estructura de árbol
*
* @return void
*/
function finishMenu($level)
{
$this->_html = "<ul class='nav'>" . $this->_html."</ul></ul>";
}
/**
* Completa el nivel del árbol (para los tipos 'tree' y 'sitemap')
*
* @param int $level profundidad actual en la estructura de árbol
*
* @return void
*/
function finishLevel($level)
{
}
/**
* Completa fila en el menú
*
* @param int $level profundidad actual en la estructura de árbol
*
* @return void
*/
function finishRow($level)
{
}
/**
* Genera el elmento del menú
*
* @param array $node Elmento que se genera
* @param int $level profundidad actual en la estructura de árbol
* @param int $type Tipo de elmento (una constante HTML_MENU_ENTRY_* )
*
* @return void
*/
function renderEntry($node, $level, $type)
{
if ($level == 0 && $this->_html != '') {
$this->_html .= "</ul></li>";
}
$this->_html .= "<li>";
if ($level == 0) {
$this->_html .= "<strong>";
} else {
$this->_html .= "<a href='" . $node['url'] . "'>";
}
$this->_html .= $node['title'];
if ($level == 0) {
$this->_html .= "</strong>";
$this->_html .= "<ul>\n";
} else {
$this->_html .= "</a>";
$this->_html .= "</li>\n";
}
}
/**
* Retorna el HTML del menu generado
*
* @return string
*/
function toHtml()
{
return $this->_html;
}
}
?>