mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[feature/template-events] Update EVENT tag documentation.
It should now fairly closely reflect what actually happens. PHPBB3-9550
This commit is contained in:
parent
faf96a1b40
commit
4b28b413f2
1 changed files with 21 additions and 1 deletions
|
@ -881,7 +881,27 @@ class phpbb_template_filter extends php_user_filter
|
||||||
/**
|
/**
|
||||||
* Compile EVENT tag.
|
* Compile EVENT tag.
|
||||||
*
|
*
|
||||||
* $tag_args should be a single string identifying hook location.
|
* $tag_args should be a single string identifying the event.
|
||||||
|
* The event name can contain letters, numbers and underscores only.
|
||||||
|
* If an invalid event name is specified, an E_USER_ERROR will be
|
||||||
|
* triggered.
|
||||||
|
*
|
||||||
|
* Event tags are only functional when the template engine has
|
||||||
|
* an instance of the extension manager. Extension manager would
|
||||||
|
* be called upon to find all extensions listening for the specified
|
||||||
|
* event, and to obtain additional template fragments. All such
|
||||||
|
* template fragments will be compiled and included in the generated
|
||||||
|
* compiled template code for the current template being compiled.
|
||||||
|
*
|
||||||
|
* The above means that whenever an extension is enabled or disabled,
|
||||||
|
* template cache should be cleared in order to update the compiled
|
||||||
|
* template code for the active set of template event listeners.
|
||||||
|
*
|
||||||
|
* This also means that extensions cannot return different template
|
||||||
|
* fragments at different times. Once templates are compiled, changing
|
||||||
|
* such template fragments would have no effect.
|
||||||
|
*
|
||||||
|
* @param string $tag_args EVENT tag arguments, as a string - for EVENT this is the event name
|
||||||
*/
|
*/
|
||||||
private function compile_tag_event($tag_args)
|
private function compile_tag_event($tag_args)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue