* @access public
* @static
*/
- function Seccion($seccion, $configuracion) // ~X2C
+ function Seccion($seccion, $configuracion)// ~X2C
{
if (array_key_exists('nombre',$seccion)) {
$this->_nombre = $seccion['nombre'];
$imgSelect = $seccion['imagenSelect'];
else
unset($imgSelect);
- $this->_imagen = new ImagenAnimada($imgComun, $imgMouseOn, $imgSelect, $configuracion['directorios']['imagenes']);
+ if (array_key_exists('link', $seccion)) {
+ parent::Pagina($seccion['link']);
+ }
+ $this->_imagen = new ImagenAnimada($imgComun, $imgMouseOn, $imgSelect,
+ $configuracion['directorios']['imagenes'], $this->_nombre, $configuracion['directorios']['root'].'/'.$this->_link);
if (array_key_exists('tipoMenu', $seccion)) {
$this->_tipoMenu = $seccion['tipoMenu'];
if (!is_null($configuracion)) {
$this->_configuracion = $configuracion;
}
- if (array_key_exists('link', $seccion)) {
- parent::Pagina($seccion['link']);
- }
if (array_key_exists('hijos', $seccion)) {
$this->_cargarHijos($seccion['hijos']);
}
* @return string
* @access public
*/
- function toHtml($link_sel) // ~X2C
+ function toHtml($link_sel)// ~X2C
{
if (isset($_SESSION['deshabilitar_links']) && $_SESSION['deshabilitar_links']) {
- $link_start = '';
- $link_end = '';
- $link_start2 = '';
+ $this->_imagen->setHabilitada(false);
}
- else {
- $link_start = '<a href="'.$this->_link.'">';
- $link_start2 = '<a href="'.$this->_link.'" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_displayStatusMsg(\''.$this->_nombre.'\'); MM_swapImage(\''.$this->_nombre.'\',\'\',\''.$this->_imagen->_imgMouseOn.'\',1); return document.MM_returnValue" MM_swapImage(\''.$this->_nombre.'\',\'\',\''.$this->_imagen->_imgMouseOn.'\',1)>';
- $link_end = '</a>';
- }
-
if ($this->verifSeccionSeleccionada($link_sel)) {
- $sec = $link_start."<img name=\"".$this->_nombre."\" src=\"".$this->_imagen->_imgSelect."\" border=\"0\" alt=\"".$this->_imagen->_alt."\">".$link_end;
- }
- else {
- $sec = $link_start2."<img name=\"".$this->_nombre."\" src=\"".$this->_imagen->_imgComun."\" border=\"0\" alt=\"".$this->_imagen->_alt."\">".$link_end;
+ $this->_imagen->setSeleccionada(true);
}
-
- return $sec;
+ return $this->_imagen->toHtml();
}
// -X2C
* @return void
* @access private
*/
- function _cargarHijos($hijos) // ~X2C
+ function _cargarHijos($hijos)// ~X2C
{
if ($this->_tipoMenu == 'vertical'){
$tmp = new MenuVertical($this->_configuracion);
* @return void
* @access private
*/
- function _desSerializarArraySecciones() // ~X2C
+ function _desSerializarArraySecciones()// ~X2C
{
$file_cache = strtr($this->_configuracion['directorios']['root'],'/','_');
$tmp = $this->_configuracion['directorios_fs']['cache'].'/'.ARRAYSECCIONES_SERIALIZADO.'_'.$file_cache;
* @return int
* @access public
*/
- function verifSeccionSeleccionada($link_sel) // ~X2C
+ function verifSeccionSeleccionada($link_sel)// ~X2C
{
$tmp = $this->_desSerializarArraySecciones();
$retorno = 0;
* @return string
* @access public
*/
- function toHtmlVertical($link_sel, $ultimo = false) // ~X2C
+ function toHtmlVertical($link_sel, $ultimo = false)// ~X2C
{
$style = "text-decoration:none";
$link_end = '';
}
else {
- $link_start = '<a href="'.$this->_link.'" style="'.$style.'">';
+ $link_start = '<a href="'.$this->_configuracion['directorios']['root'].'/'.$this->_link.'" style="'.$style.'">';
$link_end = '</a>';
}
} // -X2C Class :Seccion
-?>
\ No newline at end of file
+?>