Source for file EmptyTagHandler.class.php
Documentation is available at EmptyTagHandler.class.php
* EmptyTagHandler.class.php
* This TagHandler is used by Temply when no other TagHandler is specified.
* It is an empty implementation and of the ITagHandler interface and does nothing special.
* See http://www.oliver-matuschin.de for more information and version udpates.
* @author Oliver Matuschin <mail@oliver-matuschin.de>
* @copyright Copyright (c) 2010 Oliver Matuschin
* @license LGPL http://www.gnu.de/documents/lgpl.de.html
* @see ITagHandler.class.php::isTag()
* @return boolean This implementation always returns false.
public function isTag($tagName) {
* @see ITagHandler.class.php::processSingleTag()
* @return string Always returns an empty string.
* @see ITagHandler.class.php::processBlockTag()
* @return string Always returns an empty string.
public function processBlockTag($tagName, array $attributes, $blockContent) {
* @see ITagHandler.class.php::preprocessAttribute()
* @return string Always returns the given value of the attribute.
public function preprocessAttribute($attrName, $attrValue, $quoted) {
|