Changeset 2322:a75984c93a86 for plugins/antispam
- Timestamp:
- 10/09/13 16:43:18 (12 years ago)
- Branch:
- default
- Location:
- plugins/antispam
- Files:
-
- 12 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/antispam/filters/class.dc.filter.ip.php
r2205 r2322 16 16 public $name = 'IP Filter'; 17 17 public $has_gui = true; 18 public $help = 'ip-filter'; 18 19 19 20 private $con; -
plugins/antispam/filters/class.dc.filter.iplookup.php
r2205 r2322 16 16 public $name = 'IP Lookup'; 17 17 public $has_gui = true; 18 public $help = 'iplookup-filter'; 18 19 19 20 private $default_bls = 'sbl-xbl.spamhaus.org , bsb.spamlookup.net'; -
plugins/antispam/filters/class.dc.filter.words.php
r2205 r2322 16 16 public $has_gui = true; 17 17 public $name = 'Bad Words'; 18 public $help = 'words-filter'; 18 19 19 20 private $con; -
plugins/antispam/inc/class.dc.spamfilter.php
r1179 r2322 19 19 public $order = 100; 20 20 public $auto_delete = false; 21 public $help = null; 21 22 22 23 protected $has_gui = false; … … 158 159 return sprintf($link,$this->name,$url); 159 160 } 161 162 public function help() 163 { 164 } 160 165 } 161 166 ?> -
plugins/antispam/index.php
r2256 r2322 138 138 139 139 echo $filter_gui; 140 141 if ($filter->help) { 142 dcPage::helpBlock($filter->help); 143 } 140 144 } 141 145 else … … 250 254 '</ul>'; 251 255 } 252 } 256 257 dcPage::helpBlock('antispam','antispam-filters'); 258 } 259 253 260 ?> 254 261
Note: See TracChangeset
for help on using the changeset viewer.