Function Hook_privacy_points->modify_table_details

Definitions

sources/hooks/systems/privacy/points.php

  • Modify table details according to special hook behaviour and given data before performing the method.
  • Visibility: protected
  • Is abstract?: No
  • Is static?: No
  • Is final?: No

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$table_name ID_TEXT No No required parameter N/A N/A Table name
&$table_details array Yes No required parameter N/A N/A Details of the table from the info function, passed by reference
$row ?array No No required parameter N/A N/A Row raw from the database (null: not applicable)
$method ID_TEXT No No required parameter N/A N/A The name of the Hook_privacy_base method which called this function

Preview

Code (PHP)

/**
 * Modify table details according to special hook behaviour and given data before performing the method.
 *
 * @param  ID_TEXT $table_name Table name
 * @param  array $table_details Details of the table from the info function, passed by reference
 * @param  ?array $row Row raw from the database (null: not applicable)
 * @param  ID_TEXT $method The name of the Hook_privacy_base method which called this function
 */

protected function modify_table_details(string $table_name, array &$table_details, ?array $row, string $method)