PHP Класс HTMLPurifier_Token_Tag, yii

Наследование: extends HTMLPurifier_Token
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
$attr Associative array of the tag's attributes.
$is_tag This allows us to check objects with !empty($obj->is_tag) without having to use a function call is_a().
$name The lower-case name of the tag, like 'a', 'b' or 'blockquote'.

Открытые методы

Метод Описание
__construct ( string $name, array $attr = [], integer $line = null, integer $col = null, array $armor = [] ) Non-overloaded constructor, which lower-cases passed tag name.
toNode ( )

Описание методов

__construct() публичный Метод

Non-overloaded constructor, which lower-cases passed tag name.
public __construct ( string $name, array $attr = [], integer $line = null, integer $col = null, array $armor = [] )
$name string String name.
$attr array Associative array of attributes.
$line integer
$col integer
$armor array

toNode() публичный Метод

public toNode ( )

Описание свойств

$attr публичное свойство

Associative array of the tag's attributes.
public $attr

$is_tag публичное свойство

This allows us to check objects with !empty($obj->is_tag) without having to use a function call is_a().
public $is_tag

$name публичное свойство

The lower-case name of the tag, like 'a', 'b' or 'blockquote'.
public $name