X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=templates%2Fdefault%2Fhyperlink.tpl;h=f9c9a6ff9aec12d68828fa4c99a55ab16e508886;hp=653599316ca331553cab925891ef3fc7037ae99b;hb=cb78a4d9262e233ccdd0a81980ee54ba8946c673;hpb=f7b996c37914340010adedd03f5c014dd756d3f1 diff --git a/templates/default/hyperlink.tpl b/templates/default/hyperlink.tpl index 65359931..f9c9a6ff 100644 --- a/templates/default/hyperlink.tpl +++ b/templates/default/hyperlink.tpl @@ -6,21 +6,25 @@ * Template for constructing a hyperlink. * * The following variables are available in this template: - * + $uri - the target link location - * + $text - link text - * + $target - the location where the link should be opened - * (optional; may not be present) - * + $onclick - onClick JavaScript handler (optional; may not be present) - * + $extra - any extra text to be directly inserted into the hyperlink - * (note to core developers - PLEASE AVOID using this, as it - * usually means you are adding template-engine specific output - * to the core) + * + $uri - the target link location + * + $text - link text + * + $target - the location where the link should be opened + * (optional; may not be present) + * + $onclick - onClick JavaScript handler (optional; may not be present) + * + $class - CSS class name (optional; may not be present) + * + $id - ID name (optional; may not be present) + * + $name - Anchor name (optional; may not be present) + * + $aAttribs - Any extra attributes: an associative array, where + * keys are attribute names, and values (which are + * optional and might be null) should be placed + * in double quotes as attribute values (optional; + * may not be present) * * @copyright © 1999-2006 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package squirrelmail - * @subpackage plugins + * @subpackage templates */ @@ -29,4 +33,16 @@ extract($t); -?>> +echo ' $value) { + echo ' ' . $key . (is_null($value) ? '' : '="' . $value . '"'); +} +echo '>' . $text . ''; + +