createField(); } function getFilterField() { return $this->createField(true); } function createField() { if($protector = SpamProtectorManager::get_spam_protector()) { if($protector) { $protector = new $protector(); if($class = $protector->getFieldName()) { return new $class($class, $this->Title); } } } return false; } /** * @return string */ public function Icon() { return 'spamprotection/images/' . strtolower($this->class) . '.png'; } function showInReports() { return false; } }