You are here

function oa_messages_exit in Open Atrium Core 7.2

Implements hook_exit().

File

modules/oa_messages/oa_messages.module, line 302

Code

function oa_messages_exit($destination = NULL) {

  // While could just have the messages sent to register, this is run first
  // and allows the message sending to produce messages that the user will see
  // next page load, unlike shut down functions that operate after the session
  // is commited.
  oa_messages_shutdown_send_messages();
}