Esempio n. 1
0
 /**
  * {@inheritdoc}
  */
 public function isValidFilterTarget($column)
 {
     if ($column[0] === '_' && preg_match('/^_(?:host|service)_/', $column)) {
         return true;
     }
     return parent::isValidFilterTarget($column);
 }
Esempio n. 2
0
 public function __construct()
 {
     parent::__construct();
     $this->setName('AgentView');
     $this->crawlers = [];
     $this->browsers = [];
     $this->versions = [];
     $this->noUserAgent = 0;
     $this->invalidAgents = [];
 }
Esempio n. 3
0
 public function __construct()
 {
     parent::__construct();
     $this->setName('LinksView');
     $this->referrers = [];
     $this->domains = [];
     $this->targets = [];
     $this->noReferrer = 0;
     $this->crawlerReferrers = [];
     $this->invalidReferrers = [];
     $this->internalReferrers = [];
     $this->searchReferrers = [];
     $this->spamReferrers = [];
     $this->internalDomains = [];
 }
Esempio n. 4
0
 public function __construct()
 {
     parent::__construct();
     $this->setName('HitsView');
     $this->lastSeen = [];
     $this->patterns = [];
     $this->paths = [];
     $this->hits = [];
     $this->ips = [];
     $this->visitors = [];
     $this->new = [];
     $this->views = [];
     $this->crawlers = [];
     $this->unknown = [];
 }