/**
  * @return bool
  */
 public function isExternalSearch()
 {
     $this->isReady();
     if (!$this->isGoogleOrganic() && !$this->isGoogleCampaign() && !$this->isGoogleAds() && $this->parsedUrl->isKnown()) {
         return true;
     }
     return false;
 }
Example #2
0
 /**
  * Check if the referer is knwon.
  *
  * @return mixed
  */
 public function isKnown()
 {
     return $this->referer->isKnown();
 }