/**
  * Track the viewing of a detail record.  This leverages get_summary_text() which is object specific
  * params $user_id - The user that is viewing the record.
  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc..
  * All Rights Reserved..
  * Contributor(s): ______________________________________..
  */
 function track_view($user_id, $current_module, $id = '')
 {
     $this->log->debug("About to call vtiger_tracker (user_id, module_name, item_id)({$user_id}, {$current_module}, {$this->id})");
     $tracker = new Tracker();
     $tracker->track_view($user_id, $current_module, $id, '');
 }
예제 #2
0
 /**
  * Track the viewing of a detail record.  This leverages get_summary_text() which is object specific
  * params $user_id - The user that is viewing the record.
  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc..
  * All Rights Reserved..
  * Contributor(s): ______________________________________..
  */
 function track_view($user_id, $current_module, $id = '')
 {
     require_once 'data/Tracker.php';
     $this->log->debug("About to call ec_tracker (user_id, module_name, item_id)({$user_id}, {$current_module}, {$id})");
     $tracker = new Tracker();
     $tracker->track_view($user_id, $current_module, $id, '');
 }
예제 #3
0
 /**
  * Track the viewing of a detail record.  This leverages get_summary_text() which is object specific
  * params $user_id - The user that is viewing the record.
  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc..
  * All Rights Reserved..
  * Contributor(s): ______________________________________..
  */
 function track_view($user_id, $current_module, $id = '')
 {
     global $log;
     $log->debug("Entering CRMEntity::track_view(" . $user_id . "," . $current_module . "," . $id . ") method ...");
     $this->log->debug("About to call vtiger_tracker (user_id, module_name, item_id)({$user_id}, {$current_module}, {$this->id})");
     $tracker = new Tracker();
     $tracker->track_view($user_id, $current_module, $id, '');
     $log->debug("Exting CRMEntity::track_view(" . $user_id . "," . $current_module . "," . $id . ") method ...");
 }
예제 #4
0
 /**
  * Track the viewing of a detail record.  This leverages get_summary_text() which is object specific
  * params $user_id - The user that is viewing the record.
  * Portions created by SugarCRM are Copyright (C) SugarCRM, Inc..
  * All Rights Reserved..
  * Contributor(s): ______________________________________..
  */
 function track_view($user_id, $current_module)
 {
     $GLOBALS['log']->debug("About to call tracker (user_id, module_name, item_id)({$user_id}, {$current_module}, {$this->id})");
     $tracker = new Tracker();
     $tracker->track_view($user_id, $current_module, $this->id, $this->get_summary_text());
 }