Not a developer? Go to MovableType.com

Documentation

post_run

The post_run callback is invoked immediately after running the mode handler for the request, but prior to the response being 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