W3cubDocs

/Drupal 8

function hook_filter_info_alter

hook_filter_info_alter(&$info)

Perform alterations on filter definitions.

Parameters

array $info: Array of information on filters exposed by filter plugins.

Related topics

Hooks
Define functions that alter the behavior of Drupal core.

File

core/modules/filter/filter.api.php, line 19
Hooks provided by the Filter module.

Code

function hook_filter_info_alter(&$info) {
  // Alter the default settings of the URL filter provided by core.
  $info['filter_url']['default_settings'] = array(
    'filter_url_length' => 100,
  );
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!modules!filter!filter.api.php/function/hook_filter_info_alter/8.1.x