|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* @description: for the management of Product and Product Groups only |
|
5
|
|
|
* |
|
6
|
|
|
* |
|
7
|
|
|
* @authors: Nicolaas [at] Sunny Side Up .co.nz |
|
8
|
|
|
* @package: ecommerce |
|
9
|
|
|
* @sub-package: cms |
|
10
|
|
|
**/ |
|
11
|
|
|
|
|
12
|
|
|
class SecondHandProductAdmin extends ModelAdminEcommerceBaseClass |
|
|
|
|
|
|
13
|
|
|
{ |
|
14
|
|
|
private static $menu_priority = 3.2; |
|
|
|
|
|
|
15
|
|
|
|
|
16
|
|
|
private static $url_segment = 'secondhandproducts'; |
|
|
|
|
|
|
17
|
|
|
|
|
18
|
|
|
private static $menu_title = 'Second Hand'; |
|
|
|
|
|
|
19
|
|
|
|
|
20
|
|
|
private static $managed_models = array( |
|
|
|
|
|
|
21
|
|
|
'SecondHandProduct', |
|
22
|
|
|
'SecondHandArchive' |
|
23
|
|
|
); |
|
24
|
|
|
|
|
25
|
|
|
private static $allowed_actions = array( |
|
|
|
|
|
|
26
|
|
|
"editinsitetree", |
|
27
|
|
|
"ItemEditForm", |
|
28
|
|
|
"restore" => true, |
|
29
|
|
|
); |
|
30
|
|
|
|
|
31
|
|
|
/** |
|
32
|
|
|
* standard SS variable |
|
33
|
|
|
* @var String |
|
34
|
|
|
*/ |
|
35
|
|
|
private static $menu_icon = "ecommerce/images/icons/product-file.gif"; |
|
|
|
|
|
|
36
|
|
|
|
|
37
|
|
|
|
|
38
|
|
|
public function getEditForm($id = null, $fields = null) |
|
|
|
|
|
|
39
|
|
|
{ |
|
40
|
|
|
foreach (GoogleAddressField::js_requirements() as $jsFile) { |
|
41
|
|
|
Requirements::javascript($jsFile); |
|
42
|
|
|
} |
|
43
|
|
|
$form = parent::getEditForm(); |
|
44
|
|
|
if (singleton($this->modelClass) instanceof SiteTree) { |
|
45
|
|
|
if ($gridField = $form->Fields()->dataFieldByName($this->sanitiseClassName($this->modelClass))) { |
|
46
|
|
|
if ($gridField instanceof GridField) { |
|
47
|
|
|
$gridField->setConfig(GridFieldEditOriginalPageConfigSecondHandPage::create()); |
|
48
|
|
|
} |
|
49
|
|
|
} |
|
50
|
|
|
} |
|
51
|
|
|
return $form; |
|
52
|
|
|
} |
|
53
|
|
|
|
|
54
|
|
|
|
|
55
|
|
|
public function doCancel($data, $form) |
|
|
|
|
|
|
56
|
|
|
{ |
|
57
|
|
|
return $this->redirect(singleton('CMSMain')->Link()); |
|
58
|
|
|
} |
|
59
|
|
|
|
|
60
|
|
|
function restore($request){ |
|
|
|
|
|
|
61
|
|
|
if(isset($_GET['productid'])){ |
|
62
|
|
|
$id = intval($_GET['productid']); |
|
63
|
|
|
if($id) { |
|
64
|
|
|
$restoredPage = Versioned::get_latest_version("SiteTree", $id); |
|
65
|
|
|
if(!$restoredPage) return new SS_HTTPResponse("SiteTree #$id not found", 400); |
|
66
|
|
|
$restoredPage = $restoredPage->doRestoreToStage(); |
|
67
|
|
|
$restoredPage->doPublish(); |
|
68
|
|
|
$this->getResponse()->addHeader( |
|
69
|
|
|
'X-Status', |
|
70
|
|
|
rawurlencode(_t( |
|
71
|
|
|
'CMSMain.RESTORED', |
|
72
|
|
|
"Restored '{title}' successfully", |
|
73
|
|
|
array('title' => $restoredPage->Title) |
|
|
|
|
|
|
74
|
|
|
)) |
|
75
|
|
|
); |
|
76
|
|
|
$cmsEditLink = '/admin/secondhandproducts/SecondHandProduct/EditForm/field/SecondHandProduct/item/'.$id.'/edit'; |
|
77
|
|
|
return Controller::curr()->redirect($cmsEditLink); |
|
78
|
|
|
} |
|
79
|
|
|
} |
|
80
|
|
|
return new SS_HTTPResponse("ERROR!", 400); |
|
81
|
|
|
} |
|
82
|
|
|
} |
|
83
|
|
|
|
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.