Not a developer? Go to MovableType.com

Documentation

TakeDown

This callback is invoked as the application is finishing the service of a request. By this time the response has been sent to the client.

Input Parameters

  • $cb - a reference to the current MT::Callback object handling this event.
  • $app - a reference to the MT::App::CMS object processing this request.

Return Value

None.

Example Handler

sub pre_run_handler {
    my ($cb, $app) = @_;
    # do something
}
Back