You are here

function flag_actions_get_action in Flag 5

Same name and namespace in other branches
  1. 6.2 flag_actions.module \flag_actions_get_action()
  2. 6 flag_actions.module \flag_actions_get_action()
  3. 7.3 flag_actions.module \flag_actions_get_action()
  4. 7.2 flag_actions.module \flag_actions_get_action()
3 calls to flag_actions_get_action()
flag_actions_delete_form in ./flag_actions.module
flag_actions_form in ./flag_actions.module
Generic configuration form for configuration of flag actions.
flag_actions_form_submit in ./flag_actions.module
Generic submit handler for saving flag actions.

File

./flag_actions.module, line 58
Actions support for the Flag module.

Code

function flag_actions_get_action($aid) {
  $actions = flag_actions_get_actions();
  return $actions[$aid];
}