Conditions | 1 |
Paths | 1 |
Total Lines | 19 |
Code Lines | 13 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
38 | public function generateVirtualItemTemplate($sku) |
||
39 | { |
||
40 | return array( |
||
41 | 'sku' => $sku, |
||
42 | 'name' => array( |
||
43 | 'en' => 'Virtual Item', |
||
44 | ), |
||
45 | 'description' => array( |
||
46 | 'en' => 'Virtual Item Description', |
||
47 | ), |
||
48 | 'prices' => array( |
||
49 | 'USD' => 1, |
||
50 | ), |
||
51 | 'default_currency' => 'USD', |
||
52 | 'enabled' => true, |
||
53 | 'disposable' => false, |
||
54 | 'item_type' => 'Consumable', |
||
55 | ); |
||
56 | } |
||
57 | } |
||
58 |