1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
final class ITSEC_Network_Brute_Force_Settings extends ITSEC_Settings { public function get_id() { return 'network-brute-force'; }
public function get_defaults() { return array( 'api_key' => '', 'api_secret' => '', 'enable_ban' => true, 'updates_optin' => false, 'api_nag' => true, ); } }
ITSEC_Modules::register_settings( new ITSEC_Network_Brute_Force_Settings() );
|