... tag. * * $Id$ * * @author Paul M. Jones * * @package Savant2 * * @license http://www.gnu.org/copyleft/lesser.html LGPL * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * */ class Savant2_Plugin_ahref extends Savant2_Plugin { /** * * Output 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. * */ function plugin($href, $text, $attr = null) { $html = ' $val) { $key = htmlspecialchars($key); $val = htmlspecialchars($val); $html .= " $key=\"$val\""; } } elseif (! is_null($attr)) { // from scalar $html .= " $attr"; } // set the link text, close the tag, and return $html .= '>' . htmlspecialchars($text) . ''; return $html; } } ?>