You are here

function hook_classy_paragraphs_list_options_alter in Classy paragraphs 7

Alter the class names used on field.

Parameters

array $options: An array of classes, keyed first by class name, then by human-readable name.

See also

classy_paragraphs_get_options()

1 invocation of hook_classy_paragraphs_list_options_alter()
classy_paragraphs_get_options in ./classy_paragraphs.module
Get list of options from other modules.

File

./classy_paragraphs.api.php, line 38
API documentation for the classy_paragraphs module.

Code

function hook_classy_paragraphs_list_options_alter(&$options) {
  $options['loud'] = t('Call to action: Loud');
}