function message_notify_get_notifier in Message Notify 7.2
Helper function to include CTools plugins and get a notifier plguin.
Parameters
$plugin_name: The plugin that should be laoded.
1 call to message_notify_get_notifier()
- message_notify_send_message in ./
message_notify.module - Process and send a message.
File
- ./
message_notify.module, line 158 - Message notify.
Code
function message_notify_get_notifier($notifier_name) {
ctools_include('plugins');
return ctools_get_plugins('message_notify', 'notifier', $notifier_name);
}