Template Listener Package Installation Plugin#
Registers template listeners. Template listeners supplement event listeners, which modify server side behaviour, by adding additional template code to display additional elements. The added template code behaves as if it was part of the original template (i.e. it has access to all local variables).
Components#
Each event listener is described as an <templatelistener>
element with a name
attribute.
As the name
attribute has only be introduced with WSC 3.0, it is not yet mandatory to allow backwards compatibility.
If name
is not given, the system automatically sets the name based on the id of the event listener in the database.
<templatename>
#
The template name is the name of the template in which the event is fired. It correspondes to the eventclassname
field of event listeners.
<eventname>
#
The event name is the name given when the event is fired to identify different events within the same template.
<templatecode>
#
The given template code is literally copied into the target template during compile time.
The original template is not modified.
If multiple template listeners listen to a single event their output is concatenated using the line feed character (\n
, U+000A) in the order defined by the niceValue
.
It is recommend that the only code is an {include}
of a template to enable changes by the administrator. Names of templates included by a template listener start with two underscores by convention.
<environment>
#
The value of the environment element can either be admin
or user
and is user
if no value is given.
The value determines if the template listener will be executed in the frontend (user
) or the backend (admin
).
<nice>
#
Optional
The nice value element can contain an integer value out of the interval [-128,127]
with 0
being the default value if the element is omitted.
The nice value determines the execution order of template listeners.
Template listeners with smaller nice values are executed first.
If the nice value of two template listeners is equal, the order is undefined.
If you pass a value out of the mentioned interval, the value will be adjusted to the closest value in the interval.
<options>
#
Optional
The use of <options>
has been deprecated in WoltLab Suite 6.0. Use a regular {if}
statement in the template instead.
The options element can contain a comma-separated list of options of which at least one needs to be enabled for the template listener to be executed.
<permissions>
#
Optional
The use of <permissions>
has been deprecated in WoltLab Suite 6.0. Use a regular {if}
statement in the template instead.
The permissions element can contain a comma-separated list of permissions of which the active user needs to have at least one for the template listener to be executed.