function actions_list

actions_list($reset = FALSE)

Discovers all available actions by invoking hook_action_info().

This function contrasts with actions_get_all_actions(); see the documentation of actions_get_all_actions() for an explanation.

Parameters

$reset: Reset the action info static cache.

Return value

An associative array keyed on action function name, with the same format as the return value of hook_action_info(), containing all modules' hook_action_info() return values as modified by any hook_action_info_alter() implementations.

See also

hook_action_info()

File

includes/actions.inc, line 162
This is the actions engine for executing stored actions.

Code

function actions_list($reset = FALSE) {
  $actions = &drupal_static(__FUNCTION__);
  if (!isset($actions) || $reset) {
    $actions = module_invoke_all('action_info');
    drupal_alter('action_info', $actions);
  }

  // See module_implements() for an explanation of this cast.
  return (array) $actions;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/includes!actions.inc/function/actions_list/7.x