1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
final class ITSEC_SSL_Settings extends ITSEC_Settings { public function get_id() { return 'ssl'; }
public function get_defaults() { return array( 'require_ssl' => 'disabled', 'frontend' => 0, 'admin' => false, ); } }
ITSEC_Modules::register_settings( new ITSEC_SSL_Settings() );
|