You are here

function message_get_computed_arguments_plugin in Message 7

Get the specified message arguments plugin.

Parameters

string $plugin_name: Optional. If provided the function will return the desired plugin.

Return value

array The selected plugin for the message arguments.

1 call to message_get_computed_arguments_plugin()
message_get_computed_arguments_handler in ./message.module
Return message arguments plugin by the message type.

File

./message.module, line 59
API functions to manipulate messages.

Code

function message_get_computed_arguments_plugin($plugin_name = '') {
  ctools_include('plugins');
  return ctools_get_plugins('message', 'computed_arguments', $plugin_name);
}