Not a developer? Go to MovableType.com

Documentation

apipresave.$obj_type

This callback is invoked prior to saving the entry object via the XML-RPC or Atom API. If a new entry is being saved, “$entry->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