1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
|
4
|
|
|
/** |
5
|
|
|
* create the e-commerce specific Member Groups. |
6
|
|
|
* |
7
|
|
|
* @authors: Nicolaas [at] Sunny Side Up .co.nz |
8
|
|
|
* @package: ecommerce |
9
|
|
|
* @sub-package: tasks |
10
|
|
|
* @inspiration: Silverstripe Ltd, Jeremy |
11
|
|
|
**/ |
12
|
|
|
class EcommerceTaskCreateSecondHandProductManager extends BuildTask |
|
|
|
|
13
|
|
|
{ |
14
|
|
|
protected $title = 'Create e-commerce Second Hand Product Manager'; |
15
|
|
|
|
16
|
|
|
protected $description = 'Create the member groups and members for second hard products'; |
17
|
|
|
|
18
|
|
|
public function run($request) |
|
|
|
|
19
|
|
|
{ |
20
|
|
|
$permissionProviderFactory = Injector::inst()->get('PermissionProviderFactory'); |
21
|
|
|
db::alteration_message('========================== <br />creating second hand products sales manager', 'created'); |
22
|
|
|
$email = EcommerceConfig::get('SecondHandProduct', 'second_hand_admin_user_email'); |
23
|
|
|
if (! $email) { |
24
|
|
|
$email = 'secondhandproducts@'.$_SERVER['HTTP_HOST']; |
25
|
|
|
} |
26
|
|
|
$firstName = EcommerceConfig::get('SecondHandProduct', 'second_hand_admin_user_first_name'); |
27
|
|
|
if (!$firstName) { |
28
|
|
|
$firstName = 'Second Hand'; |
29
|
|
|
} |
30
|
|
|
$surname = EcommerceConfig::get('SecondHandProduct', 'second_hand_admin_user_surname'); |
31
|
|
|
if (!$surname) { |
32
|
|
|
$surname = 'Sales'; |
33
|
|
|
} |
34
|
|
|
|
35
|
|
|
$member = $permissionProviderFactory->CreateDefaultMember( |
36
|
|
|
$email, |
37
|
|
|
$firstName, |
38
|
|
|
$surname |
39
|
|
|
); |
40
|
|
|
db::alteration_message('================================<br />creating shop admin group ', 'created'); |
41
|
|
|
|
42
|
|
|
$permissionProviderFactory->CreateGroup( |
43
|
|
|
$code = EcommerceConfig::get('SecondHandProduct', 'second_hand_admin_group_code'), |
44
|
|
|
$name = EcommerceConfig::get('SecondHandProduct', 'second_hand_admin_group_name'), |
45
|
|
|
$parentGroup = null, |
46
|
|
|
$permissionCode = EcommerceConfig::get('SecondHandProduct', 'second_hand_admin_permission_code'), |
47
|
|
|
$roleTitle = EcommerceConfig::get('SecondHandProduct', 'second_hand_admin_role_title'), |
48
|
|
|
$otherPermissionCodes = array(), |
49
|
|
|
$member |
50
|
|
|
); |
51
|
|
|
} |
52
|
|
|
} |
53
|
|
|
|
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.