Not a developer? Go to MovableType.com

Documentation

apipostsave.$obj_type

This callback is invoked after to saving the entry object via the XML-RPC or Atom API. The callback is invoked after the object has been saved, and after all other operations related to saving the options have been completed, where as the object level post_save callback is invoked just prior to these operations. This callback is invoked subseq If a new entry has being saved, “$original->id” will not be set.

Input Parameters

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

Return Value

None.

Example Handler

sub handler {
    my ($cb, $app, $entry, $original) = @_;
}
Back