You are here

function flag_actions_update_action in Flag 7.2

Same name and namespace in other branches
  1. 5 flag_actions.module \flag_actions_update_action()
  2. 6.2 flag_actions.module \flag_actions_update_action()
  3. 6 flag_actions.module \flag_actions_update_action()
  4. 7.3 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 171
Actions support for the Flag module.

Code

function flag_actions_update_action($aid, $event, $threshold, $repeat_threshold, $parameters) {
  return db_update('flag_actions')
    ->fields(array(
    'event' => $event,
    'threshold' => $threshold,
    'repeat_threshold' => $repeat_threshold,
    'parameters' => serialize($parameters),
  ))
    ->condition('aid', $aid)
    ->execute();
}