You are here

function hook_ctools_cleanstring_alter in Chaos Tool Suite (ctools) 7

Change cleanstring settings.

Parameters

array $settings: An associative array of cleanstring settings.

See also

ctools_cleanstring()

1 invocation of hook_ctools_cleanstring_alter()
ctools_cleanstring in includes/cleanstring.inc
Clean up a string value provided by a module.

File

./ctools.api.php, line 304
Hooks provided by the Chaos Tool Suite.

Code

function hook_ctools_cleanstring_alter(array &$settings) {

  // Convert all strings to lower case.
  $settings['lower case'] = TRUE;
}