You are here

function ldapdata_nodeapi in LDAP integration 6

Implementation of hook_nodeapi().

Parameters

&$node The node the action is being performed on.:

$op What kind of action is being performed. Possible values: alter, delete, delete revision, insert, load, prepare, prepare translation, print, rss item, search result, presave, update, update index, validate, view:

$a3:

$a4:

File

./ldapdata.module, line 1081
ldapdata provides data maping against ldap server.

Code

function ldapdata_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) {
  switch ($op) {
    case 'update':
      ldapdata_node_update($node);
      break;
    default:
  }
}