1 | <?php |
||
4 | class EcommerceSecurityProxyIP extends EcommerceSecurityBaseClass |
||
|
|||
5 | { |
||
6 | |||
7 | |||
8 | /** |
||
9 | * standard SS variable |
||
10 | * @Var String |
||
11 | */ |
||
12 | private static $singular_name = "Blacklisted Proxy IP Address"; |
||
13 | |||
14 | /** |
||
15 | * standard SS variable |
||
16 | * @Var String |
||
17 | */ |
||
18 | private static $plural_name = "Blacklisted Proxy IP Addresses"; |
||
19 | |||
20 | private static $field_labels = array( |
||
21 | 'Title' => 'ProxyIP' |
||
22 | ); |
||
23 | } |
||
24 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.