Documentation
getID
usage
$int = $user->getID()
retourne
the ID (Identifier : a unique integer) of the Officity user.
Don't forget to include the officityuser.class.php file
exemples
include_once('../Kernel/common/officityuser.class.php');
$nql = new NQL();
$user = new OfficityUser();
$nql->addCommand(
'<GET name="visitor">
<CONTACT ID="'.$user->getID().'"/>
</GET>'
);
$nql->execute();