1 | <?php |
||
10 | class RepeatOrdersAdmin extends ModelAdminEcommerceBaseClass |
||
11 | { |
||
12 | /** |
||
13 | * standard SS variable. |
||
14 | * |
||
15 | * @var string |
||
16 | */ |
||
17 | private static $managed_models = 'RepeatOrder'; |
||
|
|||
18 | |||
19 | /** |
||
20 | * standard SS variable. |
||
21 | * |
||
22 | * @var string |
||
23 | */ |
||
24 | private static $url_segment = 'repeat-orders'; |
||
25 | |||
26 | /** |
||
27 | * standard SS variable. |
||
28 | * |
||
29 | * @var string |
||
30 | */ |
||
31 | private static $menu_title = 'Repeat Orders'; |
||
32 | |||
33 | /** |
||
34 | * standard SS variable. |
||
35 | * |
||
36 | * @var int |
||
37 | */ |
||
38 | private static $menu_priority = 3.13; |
||
39 | |||
40 | /** |
||
41 | * Change this variable if you don't want the Import from CSV form to appear. |
||
42 | * This variable can be a boolean or an array. |
||
43 | * If array, you can list className you want the form to appear on. i.e. array('myClassOne','myClasstwo'). |
||
44 | */ |
||
45 | public $showImportForm = false; |
||
46 | |||
47 | /** |
||
48 | * standard SS variable. |
||
49 | * |
||
50 | * @var string |
||
51 | */ |
||
52 | private static $menu_icon = 'ecommerce/images/icons/money-file.gif'; |
||
53 | |||
54 | |||
55 | public function urlSegmenter() |
||
59 | |||
60 | |||
61 | } |
||
62 |