// $Rev$
//
+require_once 'HTML/Image.php';
+
define('MECON_MARCO_IMAGENANIMADA_DIR_GENERAL', '/MECON/images');
// +X2C Class 17 :ImagenAnimada
*/
function toHtml()// ~X2C
{
- $img = new HTML_Image(array('name' => $this->getName(), 'border' => 0));
$src = $this->getSeleccionada() ? $this->_imgSelect : $this->_imgComun;
- $img->updateAttributes(array ('src' => $src) );
+ $img = new HTML_Image($src, $this->_nombre, array('name' => $this->_nombre, 'border' => 0));
$html = $img->toHtml();
if ($this->getHabilitada()) {
if ($this->getSeleccionada()) {
$prepend = '<a href="'.$this->getLink().'">';
} else {
$prepend = '<a href="'.$this->getLink().'" onMouseOut="MM_swapImgRestore()"
- onMouseOver="MM_displayStatusMsg(\''.$this->getName().'\');
- MM_swapImage(\''.$this->getName().'\',\'\',\''.$this->_imgMouseOn.'\',1);
+ onMouseOver="MM_displayStatusMsg(\''.$this->_nombre.'\');
+ MM_swapImage(\''.$this->_nombre.'\',\'\',\''.$this->_imgMouseOn.'\',1);
return document.MM_returnValue"
- MM_swapImage(\''.$this->getName().'\',\'\',\''.$this->_imgMouseOn.'\',1)>';
+ MM_swapImage(\''.$this->_nombre.'\',\'\',\''.$this->_imgMouseOn.'\',1)>';
}
$html = $prepend . $html . '</a>';
}
$imgSelect = $seccion['imagenSelect'];
else
unset($imgSelect);
- $this->_imagen = new ImagenAnimada($imgComun, $imgMouseOn, $imgSelect, $configuracion['directorios']['imagenes']);
+ $this->_imagen = new ImagenAnimada($imgComun, $imgMouseOn, $imgSelect, $configuracion['directorios']['imagenes'], $this->_nombre);
if (array_key_exists('tipoMenu', $seccion)) {
$this->_tipoMenu = $seccion['tipoMenu'];
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->_configuracion['directorios']['root'].'/'.$this->_link.'">';
- $link_start2 = '<a href="'.$this->_configuracion['directorios']['root'].'/'.$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->_nombre."\">".$link_end;
+ $this->_imagen->setSeleccionada(true);
}
- else {
- $sec = $link_start2."<img name=\"".$this->_nombre."\" src=\"".$this->_imagen->_imgComun."\" border=\"0\" alt=\"".$this->_nombre."\">".$link_end;
- }
-
- return $sec;
+ return $this->_imagen->toHtml();
}
// -X2C
} // -X2C Class :Seccion
-?>
\ No newline at end of file
+?>