function hook_ctools_cleanstring_alter
Change cleanstring settings.
Parameters
array $settings: An associative array of cleanstring settings.
See also
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
Code
function hook_ctools_cleanstring_alter(array &$settings) {
// Convert all strings to lower case.
$settings['lower case'] = TRUE;
}