本文整理匯總了PHP中Piwik\Tracker::getCountOfLoggedRequests方法的典型用法代碼示例。如果您正苦於以下問題:PHP Tracker::getCountOfLoggedRequests方法的具體用法?PHP Tracker::getCountOfLoggedRequests怎麽用?PHP Tracker::getCountOfLoggedRequests使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Piwik\Tracker
的用法示例。
在下文中一共展示了Tracker::getCountOfLoggedRequests方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: test_process_ShouldTrackAllSetRequests
public function test_process_ShouldTrackAllSetRequests()
{
$this->assertSame(0, $this->tracker->getCountOfLoggedRequests());
$this->requestSet->setRequests(array(array('idsite' => 1, 'url' => 'http://localhost/foo?bar'), array('idsite' => 1, 'url' => 'http://localhost')));
$this->handler->process($this->tracker, $this->requestSet);
$this->assertSame(2, $this->tracker->getCountOfLoggedRequests());
}
示例2: init
public function init(Tracker $tracker)
{
$this->requestSetsToRetry = array();
$this->hasError = false;
$this->numTrackedRequestsBeginning = $tracker->getCountOfLoggedRequests();
$this->transactionId = $this->getDb()->beginTransaction();
}
示例3: test_process_ShouldUpdateNumberOfLoggedRequests
public function test_process_ShouldUpdateNumberOfLoggedRequests()
{
$this->assertSame(0, $this->tracker->getCountOfLoggedRequests());
$this->processDummyRequests();
$this->assertSame(2, $this->tracker->getCountOfLoggedRequests());
}
示例4: formatResponse
private function formatResponse(Tracker $tracker)
{
return array('status' => 'success', 'tracked' => $tracker->getCountOfLoggedRequests(), 'invalid' => $this->invalidRequests);
}
示例5: formatResponse
private function formatResponse(Tracker $tracker)
{
$result = array('status' => 'success', 'tracked' => $tracker->getCountOfLoggedRequests(), 'invalid' => count($this->invalidRequests));
$this->addInvalidIndicesIfAuthenticated($result);
return $result;
}