|
Extensible BBCode
8.x-3.x-dev
|
Public Member Functions | |
| attr ($name=NULL) | |
| option () | |
| content () | |
| source () | |
| outerSource () | |
A tag occurrence as processed by tag plugins.
Definition at line 13 of file ElementInterface.php.
| attr | ( | $name = NULL | ) |
Retrieve a particular attribute of the element.
[tag NAME=VALUE]...[/tag]
| string | $name | The name of the attribute, or NULL. |
Implemented in Element.
Referenced by TemplateTagPlugin\process(), XBBCodeTestPlugin\process(), ImageTagPlugin\process(), and TableTagPlugin\process().
| content | ( | ) |
Retrieve the content of the tag.
[tag]CONTENT[/tag]
All BBCode inside this content will already be rendered.
Implemented in Element.
Referenced by TemplateTagPlugin\process(), XBBCodeTestPlugin\process(), ImageTagPlugin\process(), and TableTagPlugin\process().
| option | ( | ) |
Retrieve the option-type attribute of the element.
[tag=OPTION]...[/tag]
Implemented in Element.
Referenced by TemplateTagPlugin\process().
| outerSource | ( | ) |
Retrieve the complete source, including the opening and closing tags.
Implemented in Element.
Referenced by TemplateTagPlugin\process(), and NullTagPlugin\process().
| source | ( | ) |
Retrieve the content source of the tag.
[tag]CONTENT[/tag]
This is the content of the tag before rendering.
Implemented in Element.
Referenced by TemplateTagPlugin\process().