You are here

function hook_privatemsg_operation_executed in Privatemsg 7

Same name and namespace in other branches
  1. 6.2 privatemsg.api.php \hook_privatemsg_operation_executed()
  2. 7.2 privatemsg.api.php \hook_privatemsg_operation_executed()

Allows response to a successful operation.

Parameters

$operation: The operation that was executed.

$threads: An array which contains the thread ids on which the operation has been executed.

$account: An user account object if an other user than the currently logged in is affected.

See also

privatemsg_operation_execute()

hook_privatemsg_thread_operations()

Related topics

1 invocation of hook_privatemsg_operation_executed()
privatemsg_operation_execute in ./privatemsg.module
Execute an operation on a number of threads.

File

./privatemsg.api.php, line 579
Privatemsg API Documentation

Code

function hook_privatemsg_operation_executed($operation, $threads, $account = NULL) {
}