$Id$
-----------------------------------------------------------------------------*/
-require_once 'HTML/Image.php';
+require_once 'MECON/HTML/Image.php';
define('MECON_MARCO_IMAGENANIMADA_DIR_GENERAL', '/MECON/images');
* @var string $imgComun
* @access private
*/
- var $_imgComun;
+ var $_imgComun = '';
/**
* Nombre del archivo imagen.
* @var string $imgMouseOn
* @access private
*/
- var $_imgMouseOn;
+ var $_imgMouseOn = '';
/**
* Nombre del archivo imagen.
* @var string $imgSelect
* @access private
*/
- var $_imgSelect;
+ var $_imgSelect = '';
/**
* Indica si la imagen esta seleccionada.
var $_seleccionada = false;
/**
- * Indica si est?habilitado el link.
+ * Indica si estรก habilitado el link.
*
* @var bool $habilitada
* @access protected
var $_link = '';
/**
+ * Nombre de la imagen
+ *
* @var string $nombre
* @access protected
*/
- var $_nombre;
+ var $_nombre = '';
/**
* Gets Seleccionada.
*/
function toHtml() // ~X2C
{
- $src = $this->getSeleccionada() ? $this->_imgSelect : $this->_imgComun;
- $img = new HTML_Image($src, $this->_nombre, array('name' => $this->_nombre, 'border' => 0));
+ $src = $this->getSeleccionada() ? $this->_imgSelect : $this->_imgComun;
+ $img = new MECON_HTML_Image($src, $this->_nombre, array('name' => $this->_nombre, 'border' => 0));
$html = $img->toHtml();
if ($this->getHabilitada()) {
if ($this->getSeleccionada()) {