Function Hook_actionlog_core->get_extended_actionlog_bindings
Definitions
sources/hooks/systems/actionlog/core.php
- Get details of action log entry types handled by this hook.
- Visibility: protected
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
---|---|---|---|---|---|---|---|
$actionlog_row | array | No | No | required parameter | N/A | N/A | Action log row |
$identifier | ?string | No | No | required parameter | N/A | N/A | The identifier associated with this action log entry (null: unknown / none) |
$written_context | ?string | No | No | required parameter | N/A | N/A | The written context associated with this action log entry (null: unknown / none) |
&$bindings | array | Yes | No | required parameter | N/A | N/A | Default bindings |
Preview
Code (PHP)
/**
* Get details of action log entry types handled by this hook.
*
* @param array $actionlog_row Action log row
* @param ?string $identifier The identifier associated with this action log entry (null: unknown / none)
* @param ?string $written_context The written context associated with this action log entry (null: unknown / none)
* @param array $bindings Default bindings
*/
protected function get_extended_actionlog_bindings(array $actionlog_row, ?string $identifier, ?string $written_context, array &$bindings)
* Get details of action log entry types handled by this hook.
*
* @param array $actionlog_row Action log row
* @param ?string $identifier The identifier associated with this action log entry (null: unknown / none)
* @param ?string $written_context The written context associated with this action log entry (null: unknown / none)
* @param array $bindings Default bindings
*/
protected function get_extended_actionlog_bindings(array $actionlog_row, ?string $identifier, ?string $written_context, array &$bindings)