You are here

function message_notify_get_notifiers in Message Notify 7.2

Helper function to include CTools plugins and get all notifier plugins.

2 calls to message_notify_get_notifiers()
message_notify_entity_info_alter in ./message_notify.module
Implements hook_entity_info_alter().
message_notify_get_notifiers_as_options in ./message_notify.module
Helper function to return all notifiers as options for a select list.

File

./message_notify.module, line 166
Message notify.

Code

function message_notify_get_notifiers() {
  ctools_include('plugins');
  return ctools_get_plugins('message_notify', 'notifier');
}