本文整理匯總了PHP中Tracker::track_view方法的典型用法代碼示例。如果您正苦於以下問題:PHP Tracker::track_view方法的具體用法?PHP Tracker::track_view怎麽用?PHP Tracker::track_view使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Tracker
的用法示例。
在下文中一共展示了Tracker::track_view方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: Tracker
/**
* 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: Tracker
/**
* 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: Tracker
/**
* 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: tracker
/**
* 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());
}