1 action_example.module action_example_config_info()

Implements hook_config_info().

Related topics

File

modules/examples/action_example/action_example.module, line 284
Hook implementations for the Action Example module.

Code

function action_example_config_info() {
  $prefixes['views.view.actions_example_node_list'] = array(
    'label' => t('Action Example sample node View'),
    'group' => t('Configuration'),
  );
  $prefixes['views.view.actions_example_user_list'] = array(
    'label' => t('Action Example sample user View'),
    'group' => t('Configuration'),
  );
  return $prefixes;
}