Version Notes
No notes
Download this release
Release Info
Developer | Yireo |
Extension | Yireo_VmOrder |
Version | 0.10.7 |
Comparing to | |
See all releases |
Code changes from version 0.10.0 to 0.10.7
- app/code/community/Yireo/VmOrder/Block/Customer/Order/View.php +3 -3
- app/code/community/Yireo/VmOrder/Block/Customer/Orders/List.php +3 -3
- app/code/community/Yireo/VmOrder/Block/Order/View.php +3 -3
- app/code/community/Yireo/VmOrder/Block/Overview.php +2 -2
- app/code/community/Yireo/VmOrder/Block/Overview/Grid.php +4 -4
- app/code/community/Yireo/VmOrder/Helper/Data.php +2 -2
- app/code/community/Yireo/VmOrder/Model/Mysql4/Order.php +2 -2
- app/code/community/Yireo/VmOrder/Model/Mysql4/Order/Collection.php +2 -2
- app/code/community/Yireo/VmOrder/Model/Mysql4/Order/Item.php +2 -2
- app/code/community/Yireo/VmOrder/Model/Mysql4/Order/Item/Collection.php +2 -2
- app/code/community/Yireo/VmOrder/Model/Order.php +2 -2
- app/code/community/Yireo/VmOrder/Model/Order/Item.php +2 -2
- app/code/community/Yireo/VmOrder/controllers/CustomerController.php +2 -2
- app/code/community/Yireo/VmOrder/controllers/{IndexController.php → VmorderController.php} +3 -4
- app/code/community/Yireo/VmOrder/etc/adminhtml.xml +67 -0
- app/code/community/Yireo/VmOrder/etc/config.xml +16 -51
- app/code/community/Yireo/VmOrder/sql/vmorder_setup/mysql4-install-0.5.4.php +2 -2
- app/design/frontend/base/default/layout/vmorder.xml +39 -0
- package.xml +1 -17
app/code/community/Yireo/VmOrder/Block/Customer/Order/View.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @author Yireo
|
6 |
* @package VmOrder
|
7 |
-
* @copyright Copyright
|
8 |
-
* @license
|
9 |
* @link http://www.yireo.com
|
10 |
*/
|
11 |
|
@@ -72,6 +72,6 @@ class Yireo_VmOrder_Block_Customer_Order_View extends Mage_Core_Block_Template
|
|
72 |
if(empty($price)) {
|
73 |
return null;
|
74 |
}
|
75 |
-
return
|
76 |
}
|
77 |
}
|
4 |
*
|
5 |
* @author Yireo
|
6 |
* @package VmOrder
|
7 |
+
* @copyright Copyright 2013
|
8 |
+
* @license Open Source License
|
9 |
* @link http://www.yireo.com
|
10 |
*/
|
11 |
|
72 |
if(empty($price)) {
|
73 |
return null;
|
74 |
}
|
75 |
+
return Mage::helper('core')->currency($price);
|
76 |
}
|
77 |
}
|
app/code/community/Yireo/VmOrder/Block/Customer/Orders/List.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @author Yireo
|
6 |
* @package VmOrder
|
7 |
-
* @copyright Copyright
|
8 |
-
* @license
|
9 |
* @link http://www.yireo.com
|
10 |
*/
|
11 |
|
@@ -51,6 +51,6 @@ class Yireo_VmOrder_Block_Customer_Orders_List extends Mage_Core_Block_Template
|
|
51 |
*/
|
52 |
public function getFormattedPrice($order)
|
53 |
{
|
54 |
-
return
|
55 |
}
|
56 |
}
|
4 |
*
|
5 |
* @author Yireo
|
6 |
* @package VmOrder
|
7 |
+
* @copyright Copyright 2013
|
8 |
+
* @license Open Source License
|
9 |
* @link http://www.yireo.com
|
10 |
*/
|
11 |
|
51 |
*/
|
52 |
public function getFormattedPrice($order)
|
53 |
{
|
54 |
+
return Mage::helper('core')->currency($order->getOrderTotal());
|
55 |
}
|
56 |
}
|
app/code/community/Yireo/VmOrder/Block/Order/View.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @author Yireo
|
6 |
* @package VmOrder
|
7 |
-
* @copyright Copyright
|
8 |
-
* @license
|
9 |
* @link http://www.yireo.com
|
10 |
*/
|
11 |
|
@@ -50,7 +50,7 @@ class Yireo_VmOrder_Block_Order_View extends Mage_Core_Block_Template
|
|
50 |
if(empty($price)) {
|
51 |
return null;
|
52 |
}
|
53 |
-
return
|
54 |
}
|
55 |
|
56 |
/*
|
4 |
*
|
5 |
* @author Yireo
|
6 |
* @package VmOrder
|
7 |
+
* @copyright Copyright 2013
|
8 |
+
* @license Open Source License
|
9 |
* @link http://www.yireo.com
|
10 |
*/
|
11 |
|
50 |
if(empty($price)) {
|
51 |
return null;
|
52 |
}
|
53 |
+
return Mage::helper('core')->currency($price);
|
54 |
}
|
55 |
|
56 |
/*
|
app/code/community/Yireo/VmOrder/Block/Overview.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Yireo_VmOrder
|
6 |
* @author Yireo (http://www.yireo.com/)
|
7 |
-
* @copyright Copyright (c)
|
8 |
-
* @license
|
9 |
*/
|
10 |
|
11 |
class Yireo_VmOrder_Block_Overview extends Mage_Adminhtml_Block_Widget_Container
|
4 |
*
|
5 |
* @package Yireo_VmOrder
|
6 |
* @author Yireo (http://www.yireo.com/)
|
7 |
+
* @copyright Copyright (c) 2013 Yireo (http://www.yireo.com/)
|
8 |
+
* @license Open Source License
|
9 |
*/
|
10 |
|
11 |
class Yireo_VmOrder_Block_Overview extends Mage_Adminhtml_Block_Widget_Container
|
app/code/community/Yireo/VmOrder/Block/Overview/Grid.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @package Yireo_VmOrder
|
6 |
* @author Yireo (http://www.yireo.com/)
|
7 |
-
* @copyright Copyright (c)
|
8 |
-
* @license
|
9 |
*/
|
10 |
|
11 |
class Yireo_VmOrder_Block_Overview_Grid extends Mage_Adminhtml_Block_Widget_Grid
|
@@ -36,7 +36,7 @@ class Yireo_VmOrder_Block_Overview_Grid extends Mage_Adminhtml_Block_Widget_Grid
|
|
36 |
$customer = Mage::getModel('customer/customer')->load($item->getCustomerId());
|
37 |
$item->setCustomerName($customer->getName());
|
38 |
|
39 |
-
$item->setOrderTotal(
|
40 |
$item->setCreateDate(date('d M Y H:i:s', $item->getCreateDate()));
|
41 |
$item->setModifyDate(date('d M Y H:i:s', $item->getModifyDate()));
|
42 |
}
|
@@ -95,6 +95,6 @@ class Yireo_VmOrder_Block_Overview_Grid extends Mage_Adminhtml_Block_Widget_Grid
|
|
95 |
|
96 |
public function getRowUrl($row)
|
97 |
{
|
98 |
-
return $this->getUrl('vmorder/
|
99 |
}
|
100 |
}
|
4 |
*
|
5 |
* @package Yireo_VmOrder
|
6 |
* @author Yireo (http://www.yireo.com/)
|
7 |
+
* @copyright Copyright (c) 2013 Yireo (http://www.yireo.com/)
|
8 |
+
* @license Open Source License
|
9 |
*/
|
10 |
|
11 |
class Yireo_VmOrder_Block_Overview_Grid extends Mage_Adminhtml_Block_Widget_Grid
|
36 |
$customer = Mage::getModel('customer/customer')->load($item->getCustomerId());
|
37 |
$item->setCustomerName($customer->getName());
|
38 |
|
39 |
+
$item->setOrderTotal(Mage::helper('core')->currency($item->getOrderTotal()));
|
40 |
$item->setCreateDate(date('d M Y H:i:s', $item->getCreateDate()));
|
41 |
$item->setModifyDate(date('d M Y H:i:s', $item->getModifyDate()));
|
42 |
}
|
95 |
|
96 |
public function getRowUrl($row)
|
97 |
{
|
98 |
+
return $this->getUrl('adminhtml/vmorder/view', array('id'=>$row->getId()));
|
99 |
}
|
100 |
}
|
app/code/community/Yireo/VmOrder/Helper/Data.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @author Yireo
|
6 |
* @package VmOrder
|
7 |
-
* @copyright Copyright
|
8 |
-
* @license
|
9 |
* @link http://www.yireo.com
|
10 |
*/
|
11 |
|
4 |
*
|
5 |
* @author Yireo
|
6 |
* @package VmOrder
|
7 |
+
* @copyright Copyright 2013
|
8 |
+
* @license Open Source License
|
9 |
* @link http://www.yireo.com
|
10 |
*/
|
11 |
|
app/code/community/Yireo/VmOrder/Model/Mysql4/Order.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @author Yireo
|
6 |
* @package VmOrder
|
7 |
-
* @copyright Copyright
|
8 |
-
* @license
|
9 |
* @link http://www.yireo.com
|
10 |
*/
|
11 |
|
4 |
*
|
5 |
* @author Yireo
|
6 |
* @package VmOrder
|
7 |
+
* @copyright Copyright 2013
|
8 |
+
* @license Open Source License
|
9 |
* @link http://www.yireo.com
|
10 |
*/
|
11 |
|
app/code/community/Yireo/VmOrder/Model/Mysql4/Order/Collection.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @author Yireo
|
6 |
* @package VmOrder
|
7 |
-
* @copyright Copyright
|
8 |
-
* @license
|
9 |
* @link http://www.yireo.com
|
10 |
*/
|
11 |
|
4 |
*
|
5 |
* @author Yireo
|
6 |
* @package VmOrder
|
7 |
+
* @copyright Copyright 2013
|
8 |
+
* @license Open Source License
|
9 |
* @link http://www.yireo.com
|
10 |
*/
|
11 |
|
app/code/community/Yireo/VmOrder/Model/Mysql4/Order/Item.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @author Yireo
|
6 |
* @package VmOrder
|
7 |
-
* @copyright Copyright
|
8 |
-
* @license
|
9 |
* @link http://www.yireo.com
|
10 |
*/
|
11 |
|
4 |
*
|
5 |
* @author Yireo
|
6 |
* @package VmOrder
|
7 |
+
* @copyright Copyright 2013
|
8 |
+
* @license Open Source License
|
9 |
* @link http://www.yireo.com
|
10 |
*/
|
11 |
|
app/code/community/Yireo/VmOrder/Model/Mysql4/Order/Item/Collection.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @author Yireo
|
6 |
* @package VmOrder
|
7 |
-
* @copyright Copyright
|
8 |
-
* @license
|
9 |
* @link http://www.yireo.com
|
10 |
*/
|
11 |
|
4 |
*
|
5 |
* @author Yireo
|
6 |
* @package VmOrder
|
7 |
+
* @copyright Copyright 2013
|
8 |
+
* @license Open Source License
|
9 |
* @link http://www.yireo.com
|
10 |
*/
|
11 |
|
app/code/community/Yireo/VmOrder/Model/Order.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @author Yireo
|
6 |
* @package VmOrder
|
7 |
-
* @copyright Copyright
|
8 |
-
* @license
|
9 |
* @link http://www.yireo.com
|
10 |
*/
|
11 |
|
4 |
*
|
5 |
* @author Yireo
|
6 |
* @package VmOrder
|
7 |
+
* @copyright Copyright 2013
|
8 |
+
* @license Open Source License
|
9 |
* @link http://www.yireo.com
|
10 |
*/
|
11 |
|
app/code/community/Yireo/VmOrder/Model/Order/Item.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @author Yireo
|
6 |
* @package VmOrder
|
7 |
-
* @copyright Copyright
|
8 |
-
* @license
|
9 |
* @link http://www.yireo.com
|
10 |
*/
|
11 |
|
4 |
*
|
5 |
* @author Yireo
|
6 |
* @package VmOrder
|
7 |
+
* @copyright Copyright 2013
|
8 |
+
* @license Open Source License
|
9 |
* @link http://www.yireo.com
|
10 |
*/
|
11 |
|
app/code/community/Yireo/VmOrder/controllers/CustomerController.php
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
* Yireo VmOrder for Magento
|
4 |
*
|
5 |
* @package Yire_VmOrder
|
6 |
-
* @author
|
7 |
-
* @copyright Copyright (c)
|
8 |
* @license Open Software License
|
9 |
*/
|
10 |
|
3 |
* Yireo VmOrder for Magento
|
4 |
*
|
5 |
* @package Yire_VmOrder
|
6 |
+
* @author Yireo
|
7 |
+
* @copyright Copyright (c) 2013 Yireo (http://www.yireo.com/)
|
8 |
* @license Open Software License
|
9 |
*/
|
10 |
|
app/code/community/Yireo/VmOrder/controllers/{IndexController.php → VmorderController.php}
RENAMED
@@ -2,17 +2,16 @@
|
|
2 |
/**
|
3 |
* VmOrder extension for Magento
|
4 |
*
|
5 |
-
* @category design_default
|
6 |
* @package Yireo_VmOrder
|
7 |
* @author Yireo (http://www.yireo.com/)
|
8 |
-
* @copyright Copyright (c)
|
9 |
-
* @license
|
10 |
*/
|
11 |
|
12 |
/**
|
13 |
* VmOrder admin controller
|
14 |
*/
|
15 |
-
class
|
16 |
{
|
17 |
/**
|
18 |
* Common method
|
2 |
/**
|
3 |
* VmOrder extension for Magento
|
4 |
*
|
|
|
5 |
* @package Yireo_VmOrder
|
6 |
* @author Yireo (http://www.yireo.com/)
|
7 |
+
* @copyright Copyright (c) 2013 Yireo (http://www.yireo.com/)
|
8 |
+
* @license Open Source License (OSL)
|
9 |
*/
|
10 |
|
11 |
/**
|
12 |
* VmOrder admin controller
|
13 |
*/
|
14 |
+
class Yireo_VmOrder_VmorderController extends Mage_Adminhtml_Controller_Action
|
15 |
{
|
16 |
/**
|
17 |
* Common method
|
app/code/community/Yireo/VmOrder/etc/adminhtml.xml
ADDED
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Yireo VmOrder for Magento
|
5 |
+
*
|
6 |
+
* @author Yireo
|
7 |
+
* @package VmOrder
|
8 |
+
* @copyright Copyright 2013
|
9 |
+
* @license Open Source License
|
10 |
+
* @link http://www.yireo.com
|
11 |
+
*/
|
12 |
+
-->
|
13 |
+
<config>
|
14 |
+
<menu>
|
15 |
+
<sales>
|
16 |
+
<children>
|
17 |
+
<order>
|
18 |
+
<children>
|
19 |
+
<vmorder translate="title" module="vmorder">
|
20 |
+
<title>VirtueMart orders</title>
|
21 |
+
<action>adminhtml/vmorder/index</action>
|
22 |
+
</vmorder>
|
23 |
+
</children>
|
24 |
+
</order>
|
25 |
+
</children>
|
26 |
+
</sales>
|
27 |
+
</menu>
|
28 |
+
<translate>
|
29 |
+
<modules>
|
30 |
+
<Yireo_VmOrder>
|
31 |
+
<files>
|
32 |
+
<default>Yireo_VmOrder.csv</default>
|
33 |
+
</files>
|
34 |
+
</Yireo_VmOrder>
|
35 |
+
</modules>
|
36 |
+
</translate>
|
37 |
+
<acl>
|
38 |
+
<resources>
|
39 |
+
<admin>
|
40 |
+
<children>
|
41 |
+
<sales>
|
42 |
+
<children>
|
43 |
+
<order>
|
44 |
+
<children>
|
45 |
+
<vmorder translate="title" module="vmorder">
|
46 |
+
<title>VirtueMart Orders</title>
|
47 |
+
</vmorder>
|
48 |
+
</children>
|
49 |
+
</order>
|
50 |
+
</children>
|
51 |
+
</sales>
|
52 |
+
<system>
|
53 |
+
<children>
|
54 |
+
<config>
|
55 |
+
<children>
|
56 |
+
<vmorder translate="title" module="vmorder">
|
57 |
+
<title>VmOrder Section</title>
|
58 |
+
</vmorder>
|
59 |
+
</children>
|
60 |
+
</config>
|
61 |
+
</children>
|
62 |
+
</system>
|
63 |
+
</children>
|
64 |
+
</admin>
|
65 |
+
</resources>
|
66 |
+
</acl>
|
67 |
+
</config>
|
app/code/community/Yireo/VmOrder/etc/config.xml
CHANGED
@@ -5,8 +5,8 @@
|
|
5 |
*
|
6 |
* @author Yireo
|
7 |
* @package VmOrder
|
8 |
-
* @copyright Copyright
|
9 |
-
* @license
|
10 |
* @link http://www.yireo.com
|
11 |
*/
|
12 |
-->
|
@@ -14,7 +14,7 @@
|
|
14 |
|
15 |
<modules>
|
16 |
<Yireo_VmOrder>
|
17 |
-
<version>0.10.
|
18 |
</Yireo_VmOrder>
|
19 |
</modules>
|
20 |
|
@@ -70,56 +70,21 @@
|
|
70 |
</connection>
|
71 |
</vmorder_read>
|
72 |
</resources>
|
73 |
-
|
74 |
</global>
|
75 |
|
76 |
-
<
|
77 |
-
<
|
78 |
-
<
|
79 |
-
<
|
80 |
-
<
|
81 |
-
<
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
</order>
|
88 |
-
</children>
|
89 |
-
</sales>
|
90 |
-
</menu>
|
91 |
-
<translate>
|
92 |
-
<modules>
|
93 |
-
<Yireo_VmOrder>
|
94 |
-
<files>
|
95 |
-
<default>Yireo_VmOrder.csv</default>
|
96 |
-
</files>
|
97 |
-
</Yireo_VmOrder>
|
98 |
-
</modules>
|
99 |
-
</translate>
|
100 |
-
<acl>
|
101 |
-
<resources>
|
102 |
-
<admin>
|
103 |
-
<children>
|
104 |
-
<system>
|
105 |
-
<children>
|
106 |
-
<config>
|
107 |
-
<children>
|
108 |
-
<vmorder translate="title" module="vmorder">
|
109 |
-
<title>VmOrder Section</title>
|
110 |
-
</vmorder>
|
111 |
-
</children>
|
112 |
-
</config>
|
113 |
-
</children>
|
114 |
-
</system>
|
115 |
-
</children>
|
116 |
-
</admin>
|
117 |
-
</resources>
|
118 |
-
</acl>
|
119 |
-
</adminhtml>
|
120 |
|
121 |
<frontend>
|
122 |
-
|
123 |
<routers>
|
124 |
<vmorder>
|
125 |
<use>standard</use>
|
@@ -130,9 +95,9 @@
|
|
130 |
</vmorder>
|
131 |
</routers>
|
132 |
|
133 |
-
|
134 |
<vmorder>vmorder/customer/</vmorder>
|
135 |
-
</secure_url
|
136 |
|
137 |
<layout>
|
138 |
<updates>
|
5 |
*
|
6 |
* @author Yireo
|
7 |
* @package VmOrder
|
8 |
+
* @copyright Copyright 2013
|
9 |
+
* @license Open Source License
|
10 |
* @link http://www.yireo.com
|
11 |
*/
|
12 |
-->
|
14 |
|
15 |
<modules>
|
16 |
<Yireo_VmOrder>
|
17 |
+
<version>0.10.7</version>
|
18 |
</Yireo_VmOrder>
|
19 |
</modules>
|
20 |
|
70 |
</connection>
|
71 |
</vmorder_read>
|
72 |
</resources>
|
|
|
73 |
</global>
|
74 |
|
75 |
+
<admin>
|
76 |
+
<routers>
|
77 |
+
<adminhtml>
|
78 |
+
<args>
|
79 |
+
<modules>
|
80 |
+
<vmorder after="Mage_Adminhtml">Yireo_VmOrder</vmorder>
|
81 |
+
</modules>
|
82 |
+
</args>
|
83 |
+
</adminhtml>
|
84 |
+
</routers>
|
85 |
+
</admin>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
|
87 |
<frontend>
|
|
|
88 |
<routers>
|
89 |
<vmorder>
|
90 |
<use>standard</use>
|
95 |
</vmorder>
|
96 |
</routers>
|
97 |
|
98 |
+
<!--<secure_url>
|
99 |
<vmorder>vmorder/customer/</vmorder>
|
100 |
+
</secure_url>-->
|
101 |
|
102 |
<layout>
|
103 |
<updates>
|
app/code/community/Yireo/VmOrder/sql/vmorder_setup/mysql4-install-0.5.4.php
CHANGED
@@ -4,8 +4,8 @@
|
|
4 |
*
|
5 |
* @author Yireo
|
6 |
* @package VmOrder
|
7 |
-
* @copyright Copyright
|
8 |
-
* @license
|
9 |
* @link http://www.yireo.com
|
10 |
*/
|
11 |
|
4 |
*
|
5 |
* @author Yireo
|
6 |
* @package VmOrder
|
7 |
+
* @copyright Copyright 2013
|
8 |
+
* @license Open Source License
|
9 |
* @link http://www.yireo.com
|
10 |
*/
|
11 |
|
app/design/frontend/base/default/layout/vmorder.xml
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Yireo VmOrder
|
5 |
+
*
|
6 |
+
* @package Yireo_VmOrder
|
7 |
+
* @author Yireo (http://www.yireo.com/)
|
8 |
+
* @copyright Copyright (c) 2013 Yireo (http://www.yireo.com/)
|
9 |
+
* @license Open Software License
|
10 |
+
*/
|
11 |
+
-->
|
12 |
+
<layout version="0.1.0">
|
13 |
+
|
14 |
+
<customer_account>
|
15 |
+
<reference name="customer_account_navigation">
|
16 |
+
<action method="addLink" translate="label" module="vmorder"><name>vmorder_orders</name><path>vmorder/customer/orders</path><label>My Previous Orders</label></action>
|
17 |
+
</reference>
|
18 |
+
</customer_account>
|
19 |
+
|
20 |
+
<vmorder_customer_orders>
|
21 |
+
<update handle="customer_account"/>
|
22 |
+
<reference name="content">
|
23 |
+
<block type="vmorder/customer_orders_list" name="vmorder_orders" template="vmorder/customer/orders/list.phtml" />
|
24 |
+
</reference>
|
25 |
+
<reference name="head">
|
26 |
+
<action method="setTitle"><title>My Previous Orders</title></action>
|
27 |
+
</reference>
|
28 |
+
</vmorder_customer_orders>
|
29 |
+
|
30 |
+
<vmorder_customer_order>
|
31 |
+
<update handle="customer_account"/>
|
32 |
+
<reference name="content">
|
33 |
+
<block type="vmorder/customer_order_view" name="vmorder_order" template="vmorder/customer/order/view.phtml" />
|
34 |
+
</reference>
|
35 |
+
<reference name="head">
|
36 |
+
<action method="setTitle"><title>My Previous Orders</title></action>
|
37 |
+
</reference>
|
38 |
+
</vmorder_customer_order>
|
39 |
+
</layout>
|
package.xml
CHANGED
@@ -1,18 +1,2 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
-
<package>
|
3 |
-
<name>Yireo_VmOrder</name>
|
4 |
-
<version>0.10.0</version>
|
5 |
-
<stability>stable</stability>
|
6 |
-
<license>Open Source License</license>
|
7 |
-
<channel>community</channel>
|
8 |
-
<extends/>
|
9 |
-
<summary>Adds VirtueMart orders to Magento</summary>
|
10 |
-
<description>Adds VirtueMart orders to Magento</description>
|
11 |
-
<notes>Adds VirtueMart orders to Magento</notes>
|
12 |
-
<authors><author><name>Yireo</name><user>yireo</user><email>info@yireo.com</email></author></authors>
|
13 |
-
<date>2013-02-26</date>
|
14 |
-
<time>09:17:46</time>
|
15 |
-
<contents><target name="mageetc"><dir name="modules"><file name="Yireo_VmOrder.xml" hash="db8f1f19b440a2d8989675f73388fb42"/></dir></target><target name="magecommunity"><dir name="Yireo"><dir name="VmOrder"><dir name="Block"><dir name="Customer"><dir name="Order"><file name="View.php" hash="5c38917c864bcf7c806b927197d52932"/></dir><dir name="Orders"><file name="List.php" hash="be9ab0882cf56f1a9eb3574e94ddbced"/></dir></dir><dir name="Order"><file name="View.php" hash="b61cd80c58017e70d6606009e3190d19"/></dir><dir name="Overview"><file name="Grid.php" hash="793df54298f064e01b1d3b856134aa53"/></dir><file name="Overview.php" hash="c1c7b6038fe847cd636acb7756f50267"/></dir><dir name="Helper"><file name="Data.php" hash="f40247478861bb4aee9af9b0c627cccd"/></dir><dir name="Model"><dir name="Mysql4"><dir name="Order"><file name="Collection.php" hash="21b956d08dbb9d0beb4343dc5e74a227"/><dir name="Item"><file name="Collection.php" hash="373d02c1343a180b970283827c09c889"/></dir><file name="Item.php" hash="46fbec650db0da115217a609004b1223"/></dir><file name="Order.php" hash="095b08455d74cef141bde64af631c9b5"/></dir><dir name="Order"><file name="Item.php" hash="1d4873f84b7271faf522532d323dde4c"/></dir><file name="Order.php" hash="c1ff561e6d5ec1807ada0e60b1eb6bfa"/></dir><dir name="controllers"><file name="CustomerController.php" hash="06454676da560a7b92cd3f6643b4b4dd"/><file name="IndexController.php" hash="96736c8378c979f25dcdbca13cf7c698"/></dir><dir name="etc"><file name="config.xml" hash="ebd0e4271c9f1f0d2039b2a8562d7766"/></dir><dir name="sql"><dir name="vmorder_setup"><file name="mysql4-install-0.5.4.php" hash="08285995386a7283955a6ada5778315e"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="vmorder"><dir name="customer"><dir name="order"><file name="view.phtml" hash="db9157c243d749b7c7993d7376384544"/></dir><dir name="orders"><file name="list.phtml" hash="ec6ea97c3626fff06d9c03d871ca1bad"/></dir></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="vmorder"><dir name="order"><file name="view.phtml" hash="096f5268d14b319856c9142e3bbb34fd"/></dir><file name="overview.phtml" hash="38ee3b682cf1bc0ab1133cf3f0630dd1"/></dir></dir></dir></dir></dir></target></contents>
|
16 |
-
<compatible/>
|
17 |
-
<dependencies><required><php><min>5.2.8</min><max>6.0.0</max></php></required></dependencies>
|
18 |
-
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
+
<package><name>Yireo_VmOrder</name><version>0.10.7</version><stability>stable</stability><license>Open Source License</license><channel>community</channel><extends></extends><summary>No summary</summary><description>No description</description><notes>No notes</notes><authors><author><name>Yireo</name><user>yireo</user><email>info@yireo.com</email></author></authors><date>2013-12-27</date><time>1:32:55</time><compatible></compatible><dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies><contents><target name="mage"><dir name="app"><dir name="etc"><dir name="modules"><file name="Yireo_VmOrder.xml" hash="db8f1f19b440a2d8989675f73388fb42"/></dir></dir><dir name="code"><dir name="community"><dir name="Yireo"><dir name="VmOrder"><dir name="controllers"><file name="CustomerController.php" hash="ed94e1b303295130b37e4ca43986c8d7"/><file name="VmorderController.php" hash="0a221e5ed7516f76cce04e8887955afa"/></dir><dir name="Block"><file name="Overview.php" hash="b1ae579a1475bf27e673dd0fcf3fff99"/><dir name="Customer"><dir name="Order"><file name="View.php" hash="8116ac3a37136131d9e972bdf36c7268"/></dir><dir name="Orders"><file name="List.php" hash="9fecf1bc8a5a84de04de42ff2cac5d4f"/></dir></dir><dir name="Order"><file name="View.php" hash="6c6f18a54c7497f0eda34a9730e24bdc"/></dir><dir name="Overview"><file name="Grid.php" hash="955b5827aba8c1e07ddf5b86d172278d"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="372f477df483e52581d5e5314d1b99fd"/><file name="config.xml" hash="df7380e35a4835654ed6f5b624f08bcf"/></dir><dir name="sql"><dir name="vmorder_setup"><file name="mysql4-install-0.5.4.php" hash="52382f9a7192da35b035287e4887af70"/></dir></dir><dir name="Helper"><file name="Data.php" hash="3fb48bfb184f462f14530925a4a63ced"/></dir><dir name="Model"><file name="Order.php" hash="e81ddab818df42b12c94546b11168966"/><dir name="Order"><file name="Item.php" hash="aea4968314df65955aa4c3be6d18effa"/></dir><dir name="Mysql4"><file name="Order.php" hash="4a6ec7d223e10cd4cbcbdadac9e1d419"/><dir name="Order"><file name="Collection.php" hash="644b9396f1664d1608c79d6873639f81"/><file name="Item.php" hash="b606c998818383a55b1e22f29a54e89a"/><dir name="Item"><file name="Collection.php" hash="b942dbfa2f972d1f0962fbbbe4776ed2"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="design"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="vmorder"><dir name="customer"><dir name="orders"><file name="list.phtml" hash="ec6ea97c3626fff06d9c03d871ca1bad"/></dir><dir name="order"><file name="view.phtml" hash="db9157c243d749b7c7993d7376384544"/></dir></dir></dir></dir><dir name="layout"><file name="vmorder.xml" hash="c534452bba6a39628a7b0ad04e0871d3"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="vmorder"><file name="overview.phtml" hash="38ee3b682cf1bc0ab1133cf3f0630dd1"/><dir name="order"><file name="view.phtml" hash="096f5268d14b319856c9142e3bbb34fd"/></dir></dir></dir></dir></dir></dir></dir></dir></target></contents></package>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|