-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconfiguration.php
More file actions
55 lines (48 loc) · 1.58 KB
/
Copy pathconfiguration.php
File metadata and controls
55 lines (48 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
class opConfig
{
/* $trusteeAvailableFor defines TLDs for which Openprovider's
trustee service will be used. Uncomment those TLDs for which
you need to use trustee. Please note that additional costs can apply.
*/
static public $trusteeAvailableFor = [
//'ba',
//'cn',
//'co.id',
//'co.rs',
//'com.ar',
//'com.cn',
//'com.my',
//'de',
//'fr',
//'my',
//'net.cn',
//'net.my',
//'org.cn',
//'org.my',
//'rs',
//'web.id',
];
/* This parameter defines the behaviour of the "Do Not Renew" checkbox.
A checked "Do Not Renew" checkbox will always set the domain's auto-renew
status to "off", letting the domain expire at the end of the period.
An unchecked "Do Not Renew" checkbox will trigger the auto-renew status
for the domain as set in the parameter below. Accepted values are
"on" and "default" to use the Openprovider account's default setting.
*/
static public $renewBehaviour = 'on';
/*
* List of api urls.
* For Production mode
*/
static public $apiUrl = 'https://api.openprovider.eu';
static public $sslPanelUrl = 'https://sslpanel.io';
static public $rcpUrl = 'https://cp.openprovider.eu';
/*
* List of api urls
* For Test mode
*/
static public $apiCteUrl = 'https://api.cte.openprovider.eu';
static public $sslPanelCteUrl = 'https://sslinhva.cte.openprovider.eu';
static public $rcpCteUrl = 'https://rcp.cte.openprovider.eu';
}