$is_tag
$is_tag
Static bool marker that indicates the class is a tag.
This allows us to check objects with !empty($obj->is_tag) without having to use a function call is_a().
Concrete empty token class.
__construct(string $name, array $attr = array(), int $line = null, int $col = null, array $armor = array()) : mixed
Non-overloaded constructor, which lower-cases passed tag name.
string | $name | String name. |
array | $attr | Associative array of attributes. |
int | $line | |
int | $col | |
array | $armor |
<?php
/**
* Concrete empty token class.
*/
class HTMLPurifier_Token_Empty extends HTMLPurifier_Token_Tag
{
public function toNode() {
$n = parent::toNode();
$n->empty = true;
return $n;
}
}
// vim: et sw=4 sts=4