writeDebugInfo() public method

public writeDebugInfo ( )
コード例 #1
0
ファイル: ActionClickUrl.php プロジェクト: bossrabbit/piwik
 public function writeDebugInfo()
 {
     parent::writeDebugInfo();
     if ($this->detectActionIsOutlinkOnAliasHost($this, $this->request->getIdSite())) {
         Common::printDebug("INFO: The outlink URL host is one of the known host for this website. ");
     }
 }
コード例 #2
0
ファイル: ActionEvent.php プロジェクト: carriercomm/piwik
 public function writeDebugInfo()
 {
     $write = parent::writeDebugInfo();
     if ($write) {
         Common::printDebug("Event Category = " . $this->eventCategory . ",\n                Event Action = " . $this->eventAction . ",\n                Event Name =  " . $this->eventName . ",\n                Event Value = " . $this->getCustomFloatValue());
     }
     return $write;
 }
コード例 #3
0
ファイル: ActionEvent.php プロジェクト: dorelljames/piwik
 public function writeDebugInfo()
 {
     $write = parent::writeDebugInfo();
     if ($write) {
         Common::printDebug("Event Value = " . $this->getCustomFloatValue());
     }
     return $write;
 }