Version Notes
Display a list of products added to the cart in a drop down menu
Download this release
Release Info
| Developer | Mahesh Komarraju |
| Extension | evobiliscartmenu |
| Version | 1.0.0 |
| Comparing to | |
| See all releases | |
Version 1.0.0
- app/code/local/Evobilis/Cartmenu/Block/Cartmenu.php +8 -0
- app/code/local/Evobilis/Cartmenu/Model/Cartmenu.php +10 -0
- app/code/local/Evobilis/Cartmenu/controllers/IndexController.php +14 -0
- app/code/local/Evobilis/Cartmenu/etc/config.xml +56 -0
- app/etc/modules/Evobilis_Cartmenu.xml +9 -0
- package.xml +18 -0
app/code/local/Evobilis/Cartmenu/Block/Cartmenu.php
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?
|
| 2 |
+
|
| 3 |
+
class Evobilis_Cartmenu_Block_Cartmenu extends Mage_Core_Block_Template
|
| 4 |
+
{
|
| 5 |
+
// necessary methods
|
| 6 |
+
}
|
| 7 |
+
|
| 8 |
+
?>
|
app/code/local/Evobilis/Cartmenu/Model/Cartmenu.php
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?
|
| 2 |
+
class Evobilis_Cartmenu_Model_Cartmenu extends Mage_Media_Model_Image
|
| 3 |
+
{
|
| 4 |
+
function _construct()
|
| 5 |
+
{
|
| 6 |
+
// $this->_init('user_profile/profile');
|
| 7 |
+
}
|
| 8 |
+
|
| 9 |
+
}
|
| 10 |
+
?>
|
app/code/local/Evobilis/Cartmenu/controllers/IndexController.php
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?
|
| 2 |
+
class Evobilis_Cartmenu_IndexController extends Mage_Core_Controller_Front_Action
|
| 3 |
+
{
|
| 4 |
+
public function indexAction()
|
| 5 |
+
{
|
| 6 |
+
|
| 7 |
+
/*$this->loadLayout(array('default'));
|
| 8 |
+
$this->getLayout()->getBlock('head')->setTitle($this->__(''));
|
| 9 |
+
$this->renderLayout();*/
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
}
|
| 14 |
+
?>
|
app/code/local/Evobilis/Cartmenu/etc/config.xml
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0"?>
|
| 2 |
+
<config>
|
| 3 |
+
<global>
|
| 4 |
+
<modules>
|
| 5 |
+
<evobilis_cartmenu>
|
| 6 |
+
<version>0.1.0</version>
|
| 7 |
+
</evobilis_cartmenu>
|
| 8 |
+
</modules>
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
|
| 12 |
+
<blocks>
|
| 13 |
+
<cartmenu>
|
| 14 |
+
<rewrite>
|
| 15 |
+
<cartmenu>Evobilis_Cartmenu_Block_Cartmenu</cartmenu>
|
| 16 |
+
</rewrite>
|
| 17 |
+
</cartmenu>
|
| 18 |
+
</blocks>
|
| 19 |
+
|
| 20 |
+
<models>
|
| 21 |
+
<mcartmenu>
|
| 22 |
+
<class>Evobilis_Cartmenu_Model</class>
|
| 23 |
+
</mcartmenu>
|
| 24 |
+
</models>
|
| 25 |
+
|
| 26 |
+
</global>
|
| 27 |
+
<frontend>
|
| 28 |
+
<translate>
|
| 29 |
+
<modules>
|
| 30 |
+
<Evobilis_Cartmenu>
|
| 31 |
+
<files>
|
| 32 |
+
<default>Evobilis_Cartmenu.csv</default>
|
| 33 |
+
</files>
|
| 34 |
+
</Evobilis_Cartmenu>
|
| 35 |
+
</modules>
|
| 36 |
+
</translate>
|
| 37 |
+
|
| 38 |
+
<routers>
|
| 39 |
+
<cartmenu>
|
| 40 |
+
<use>standard</use>
|
| 41 |
+
<args>
|
| 42 |
+
<module>Evobilis_Cartmenu</module>
|
| 43 |
+
<frontName>cartmenu</frontName>
|
| 44 |
+
</args>
|
| 45 |
+
</cartmenu>
|
| 46 |
+
|
| 47 |
+
</routers>
|
| 48 |
+
<layout>
|
| 49 |
+
<updates>
|
| 50 |
+
<cartmenu>
|
| 51 |
+
<file>cartmenu.xml</file>
|
| 52 |
+
</cartmenu>
|
| 53 |
+
</updates>
|
| 54 |
+
</layout>
|
| 55 |
+
</frontend>
|
| 56 |
+
</config>
|
app/etc/modules/Evobilis_Cartmenu.xml
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0"?>
|
| 2 |
+
<config>
|
| 3 |
+
<modules>
|
| 4 |
+
<Evobilis_Cartmenu>
|
| 5 |
+
<active>true</active>
|
| 6 |
+
<codePool>local</codePool>
|
| 7 |
+
</Evobilis_Cartmenu>
|
| 8 |
+
</modules>
|
| 9 |
+
</config>
|
package.xml
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?xml version="1.0"?>
|
| 2 |
+
<package>
|
| 3 |
+
<name>evobiliscartmenu</name>
|
| 4 |
+
<version>1.0.0</version>
|
| 5 |
+
<stability>stable</stability>
|
| 6 |
+
<license uri="http://www.evobilis.com">Evobilis</license>
|
| 7 |
+
<channel>community</channel>
|
| 8 |
+
<extends/>
|
| 9 |
+
<summary>Display a list of products added to the cart in a drop down menu </summary>
|
| 10 |
+
<description>Display a list of products added to the cart in a drop down menu </description>
|
| 11 |
+
<notes>Display a list of products added to the cart in a drop down menu </notes>
|
| 12 |
+
<authors><author><name>Mahesh</name><user>Mahesh</user><email>mahesh.komarraju@evobilis.com</email></author><author><name>Cyrus</name><user>aumanwai</user><email>cyrus.au@evobilis.com</email></author></authors>
|
| 13 |
+
<date>2013-02-28</date>
|
| 14 |
+
<time>04:21:44</time>
|
| 15 |
+
<contents><target name="magelocal"><dir name="Evobilis"><dir name="Cartmenu"><dir><dir name="Block"><file name="Cartmenu.php" hash="003eb9ffa498041b5c2b071414cee92e"/></dir><dir name="Model"><file name="Cartmenu.php" hash="afc56a4bbe0a5ab8280135db48b4affc"/></dir><dir name="controllers"><file name="IndexController.php" hash="193d28a15b7d50730e0e2ba816899fa1"/></dir><dir name="etc"><file name="config.xml" hash="7acf5074994c4cbc18142d72c73ef7ab"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="cartmenu.xml" hash=""/></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="evo-cart-menu"><file name="evo-cart-menu.css" hash=""/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Evobilis_Cartmenu.xml" hash="73ea83e3c562dc184956dcf3c7c19204"/></dir></target></contents>
|
| 16 |
+
<compatible/>
|
| 17 |
+
<dependencies><required><php><min>5.0.0</min><max>5.4.6</max></php></required></dependencies>
|
| 18 |
+
</package>
|
