You can see this if you include a debug statement in your mymodule_nodeapi function implementation:

function mymodule_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) {
  print "ops: " . print_r($op, true);
  switch ($op) {
  ...
}

Victor Kane
http://awebfactory.com.ar


On Sun, Feb 21, 2010 at 1:24 PM, Eric Schaefer <eric.schaefer@eas-consulting.de> wrote:
Hi List,

Which hook_nodeapi() $op's are called on issuing node_publish_action
and node_save_action?

Regards,
Eric