You are here

function flag_actions_update_action in Flag 6.2

Same name and namespace in other branches
  1. 5 flag_actions.module \flag_actions_update_action()
  2. 6 flag_actions.module \flag_actions_update_action()
  3. 7.3 flag_actions.module \flag_actions_update_action()
  4. 7.2 flag_actions.module \flag_actions_update_action()

Update an existing flag action.

Parameters

$aid: The flag action ID to update.

$event: The flag event, such as "flag" or "unflag".

$threshold: The flagging threshold at which this action will be executed.

$repeat_threshold: The number of additional flaggings after which the action will be repeated.

$parameters: The action parameters.

1 call to flag_actions_update_action()
flag_actions_form_submit in ./flag_actions.module
Generic submit handler for saving flag actions.

File

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

Code

function flag_actions_update_action($aid, $event, $threshold, $repeat_threshold, $parameters) {
  return db_query("UPDATE {flag_actions} SET event = '%s', threshold = %d, repeat_threshold = %d, parameters = '%s' WHERE aid = %d", $event, $threshold, $repeat_threshold, serialize($parameters), $aid);
}