Version Notes
Stable version.
Download this release
Release Info
Developer | Ray Zhang |
Extension | rayfox_bettercart |
Version | 0.1.0 |
Comparing to | |
See all releases |
Version 0.1.0
- app/etc/modules/Rayfox_BetterCart.xml +35 -0
- package.xml +30 -0
app/etc/modules/Rayfox_BetterCart.xml
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* Magento
|
5 |
+
*
|
6 |
+
* NOTICE OF LICENSE
|
7 |
+
*
|
8 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
9 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
10 |
+
* It is also available through the world-wide-web at this URL:
|
11 |
+
* http://opensource.org/licenses/afl-3.0.php
|
12 |
+
* If you did not receive a copy of the license and are unable to
|
13 |
+
* obtain it through the world-wide-web, please send an email
|
14 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
15 |
+
*
|
16 |
+
* DISCLAIMER
|
17 |
+
*
|
18 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
19 |
+
* versions in the future. If you wish to customize Magento for your
|
20 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
21 |
+
*
|
22 |
+
* @category Rayfox
|
23 |
+
* @package Rayfox_BetterCart
|
24 |
+
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
|
25 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
26 |
+
*/
|
27 |
+
-->
|
28 |
+
<config>
|
29 |
+
<modules>
|
30 |
+
<Rayfox_BetterCart>
|
31 |
+
<active>true</active>
|
32 |
+
<codePool>community</codePool>
|
33 |
+
</Rayfox_BetterCart>
|
34 |
+
</modules>
|
35 |
+
</config>
|
package.xml
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<package>
|
3 |
+
<name>rayfox_bettercart</name>
|
4 |
+
<version>0.1.0</version>
|
5 |
+
<stability>stable</stability>
|
6 |
+
<license>AFL</license>
|
7 |
+
<channel>community</channel>
|
8 |
+
<extends/>
|
9 |
+
<summary>The extension will put all unsaleable items together and move them to
|
10 |
+
the top/bottom of shopping cart items table, so customers can delete
|
11 |
+
them more conveniently.</summary>
|
12 |
+
<description>The extension will put all unsaleable items together and move them to
|
13 |
+
the top/bottom of shopping cart items table, so customers can delete
|
14 |
+
them more conveniently.
|
15 |
+

|
16 |
+
You can control the functionality and position of unsaleable items in
|
17 |
+
shopping cart from Magento Admin.
|
18 |
+

|
19 |
+
这个扩展会将购物车中处于缺货状态或者由于其它原因不可卖的产品集中在一起并
|
20 |
+
放在购物车的顶部或者底部,方便顾客删除购物车中的产品。
|
21 |
+
可通过后台的选项控制是否启用该功能和调整不可卖产品在购物车中的位置。
|
22 |
+
</description>
|
23 |
+
<notes>Stable version.</notes>
|
24 |
+
<authors><author><name>Ray Zhang</name><user>Ray</user><email>cgzhang@gmail.com</email></author></authors>
|
25 |
+
<date>2012-02-07</date>
|
26 |
+
<time>06:46:55</time>
|
27 |
+
<contents><target name="mageetc"><dir name="modules"><file name="Rayfox_BetterCart.xml" hash="ba62037372a50952e3aa60429cffbc99"/></dir></target></contents>
|
28 |
+
<compatible/>
|
29 |
+
<dependencies><required><php><min>5.3.6</min><max>6.0.0</max></php></required></dependencies>
|
30 |
+
</package>
|