X-Git-Url: https://git.llucax.com/mecon/meconlib.git/blobdiff_plain/80fb14443bb5fdb9349ff539383d924c1d05c44e..06ddaedaa98e5ad18bd0a24dcf1313d7f4d2465b:/lib/MECON/HTML/Icon.php diff --git a/lib/MECON/HTML/Icon.php b/lib/MECON/HTML/Icon.php index 471e48d..26f20f6 100644 --- a/lib/MECON/HTML/Icon.php +++ b/lib/MECON/HTML/Icon.php @@ -60,15 +60,24 @@ class MECON_HTML_Icon extends MECON_HTML_Image { */ var $_link; + /** + * Alineacion de la imagen con respecto al texto. + * @private + */ + var $_align; + /** * Constructor. * * @param $nombre Nombre de la imágen. * @param $link Link a donde apunta. Si es null, no tiene un link. Puede ser un link o un MECON_HTML_Link. + * @param $alt Texto alternativo para la imagen. * @param $attrs Atributos de la imágen. + * @param $align Alineación de la imagen con respecto al texto. */ - function MECON_HTML_Icon($nombre, $link = null, $alt = null, $attrs = array()) + function MECON_HTML_Icon($nombre, $link = null, $alt = null, $attrs = + array(), $align = 'right') { switch ($nombre) { default: @@ -79,6 +88,7 @@ class MECON_HTML_Icon extends MECON_HTML_Image { } parent::MECON_HTML_Image($src, $alt, $attrs); $this->setLink($link); + $this->_align = $align; } /** @@ -147,8 +157,15 @@ class MECON_HTML_Icon extends MECON_HTML_Image { if (!$full or is_null($link)) { return $link; } - $link->addContents(new MECON_HTML_Image($this->getSrc(), - $this->getAlt(), $this->getAttributes())); + + if ($this->_align == 'left') { + $link->addContents(new MECON_HTML_Image($this->getSrc(), + $this->getAlt(), $this->getAttributes()), true); + } + elseif ($this->_align == 'right') { + $link->addContents(new MECON_HTML_Image($this->getSrc(), + $this->getAlt(), $this->getAttributes())); + } return $link; }