DiviAreaItem.addFilter(hook, callback, priority, context)
Register a new hook that only handles filters of this Area. Use DiviAreaItem.applyFilters() to apply an Area filter.
See DiviArea.addFilter() function for more details on how filters work.
Params
hook- The hook name, without an area-suffix.
callback- The callback function to execute when the filter is applied. The return value of the callback function defines the new (aka “filtered”) value.
priority- Used to specify the order, in which callbacks are executed. Callbacks with a lower priority are called first.
Default: 10 context- Used to define a custom value for the scope-variable
thisin the callback function.
Default: <code>window</code>
Returns
The function does not return anything.
Notes
No notes