... tag. * * @package Savant3 * * @author Paul M. Jones * * @license http://www.gnu.org/copyleft/lesser.html LGPL * * @version $Id: Savant3_Plugin_ahref.php,v 1.4 2005/08/09 12:56:14 pmjones Exp $ * */ /** * * Generates an ... tag. * * @package Savant3 * * @author Paul M. Jones * */ class Savant3_Plugin_ahref extends Savant3_Plugin { /** * * Generate an HTML ... tag. * * @access public * * @param string|array $href A string URL for the resulting tag. May * also be an array with any combination of the keys 'scheme', * 'host', 'path', 'query', and 'fragment' (c.f. PHP's native * parse_url() function). * * @param string $text The displayed text of the link. * * @param string|array $attr Any extra attributes for the tag. * * @return string The ... tag. * */ public function ahref($href, $text, $attr = null) { $html = ' $val) { $key = htmlspecialchars($key); $val = htmlspecialchars($val); $html .= " $key=\"$val\""; } } elseif (! is_null($attr)) { // from scalar $html .= htmlspecialchars(" $attr"); } // set the link text, close the tag, and return $html .= '>' . $text . ''; return $html; } } ?>