Version Notes
Kartparadigm Giftcard Extension Supports Magento 1.8.0, 1.8.1 and 1.9
Download this release
Release Info
Developer | Kartparadigm |
Extension | Kartparadigm_Giftcard |
Version | 1.5.3.0 |
Comparing to | |
See all releases |
Code changes from version 1.5.2.0 to 1.5.3.0
app/design/frontend/base/default/template/kartparadigm/giftcard/product/media.phtml
CHANGED
@@ -121,7 +121,9 @@ font-size:14px;font-weight:bold;
|
|
121 |
<style>
|
122 |
.col1-layout .product-view .product-shop {
|
123 |
float: left;
|
124 |
-
|
|
|
|
|
125 |
<?php endif; ?>
|
126 |
<script>
|
127 |
var gctemp=$.noConflict();
|
121 |
<style>
|
122 |
.col1-layout .product-view .product-shop {
|
123 |
float: left;
|
124 |
+
margin-left: 50px;
|
125 |
+
}
|
126 |
+
</style>
|
127 |
<?php endif; ?>
|
128 |
<script>
|
129 |
var gctemp=$.noConflict();
|
app/design/frontend/base/default/template/kartparadigm/giftcard/product/media.phtml~
DELETED
@@ -1,245 +0,0 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
<?php
|
4 |
-
|
5 |
-
$_product = $this->getProduct();
|
6 |
-
$options=$_product->getAttributeText('giftcard_template');
|
7 |
-
$value=reset($options);
|
8 |
-
//$row=Mage::getModel('kartparadigm_giftcard/giftcardtemplate')->getCollection()->addFieldToFilter('template_name',$value)->getFirstItem();
|
9 |
-
$textcol="#BF0D0D";
|
10 |
-
$themecol="#32943F";
|
11 |
-
$mediapath=Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA);
|
12 |
-
$imgpath=$this->helper('catalog/image')->init($_product, 'image');
|
13 |
-
$barcode=$mediapath."giftcard/bar.gif";
|
14 |
-
$close=$mediapath."giftcard/clos.png";
|
15 |
-
|
16 |
-
if(($_product->getGiftcardValue()!=$_product->getPrice())&& ($_product->getGiftcardValue()!=0))
|
17 |
-
$price =Mage::helper('core')->currency($_product->getGiftcardValue(), true, false);
|
18 |
-
else
|
19 |
-
$price=Mage::helper('core')->currency($_product->getPrice());
|
20 |
-
|
21 |
-
|
22 |
-
?>
|
23 |
-
<style>
|
24 |
-
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Tangerine">
|
25 |
-
|
26 |
-
|
27 |
-
</style>
|
28 |
-
<style type="text/css">
|
29 |
-
/* example styling, feel free to move it to your styles.css */
|
30 |
-
|
31 |
-
.col1-layout .product-view .product-shop {
|
32 |
-
float: right;
|
33 |
-
width: 290px;
|
34 |
-
}
|
35 |
-
.product-view .product-img-box {
|
36 |
-
float: left;
|
37 |
-
width: 550px;
|
38 |
-
height:350px;
|
39 |
-
}
|
40 |
-
.tab .tr{
|
41 |
-
padding:2px 2px;
|
42 |
-
height:28px;
|
43 |
-
}
|
44 |
-
.tab td{
|
45 |
-
padding:2px 2px;
|
46 |
-
height:24px;
|
47 |
-
}
|
48 |
-
.froml{
|
49 |
-
font-weight:bold;
|
50 |
-
font-size:14px;
|
51 |
-
|
52 |
-
}
|
53 |
-
.tol{
|
54 |
-
font-weight:bold;
|
55 |
-
font-size:14px;
|
56 |
-
|
57 |
-
}
|
58 |
-
.proname{
|
59 |
-
font-size: 22px;
|
60 |
-
font-family: 'Tangerine', serif;font-style: oblique;
|
61 |
-
|
62 |
-
}
|
63 |
-
.themecolor{
|
64 |
-
color:<?php echo $themecol ?>;
|
65 |
-
}
|
66 |
-
.textcolor{
|
67 |
-
color:<?php echo $textcol ?>;
|
68 |
-
}
|
69 |
-
|
70 |
-
.giftcard-code{
|
71 |
-
|
72 |
-
font-weight:bold;
|
73 |
-
font-size:12px;
|
74 |
-
float:right;
|
75 |
-
padding-right:15px;
|
76 |
-
}
|
77 |
-
.val{
|
78 |
-
font-weight:bold;
|
79 |
-
font-size:15px;
|
80 |
-
width:100px;
|
81 |
-
float:left;
|
82 |
-
}
|
83 |
-
.gcnote{
|
84 |
-
font-size:12px;
|
85 |
-
width:240px;
|
86 |
-
float:left;
|
87 |
-
padding-top:30px;
|
88 |
-
}
|
89 |
-
.tab{
|
90 |
-
margin-left: 250px; width:290px;position: absolute;
|
91 |
-
}
|
92 |
-
.imgright{
|
93 |
-
float:right;
|
94 |
-
}
|
95 |
-
.barcode{
|
96 |
-
width:140px;
|
97 |
-
height:50px;
|
98 |
-
}
|
99 |
-
.amt{
|
100 |
-
font-size:18px;
|
101 |
-
}
|
102 |
-
.giftcard-preview-message-box{
|
103 |
-
background-repeat: no-repeat;
|
104 |
-
background-image: url('<?php echo $imgpath ?>');
|
105 |
-
background-size: 240px 350px;
|
106 |
-
}
|
107 |
-
.fromto{
|
108 |
-
font-size:14px;font-weight:bold;
|
109 |
-
}
|
110 |
-
.giftcard-preview-container{width:550px;height:350px;}
|
111 |
-
.giftcard-preview-message-box {width:525px;position: absolute; height:350px; padding-top:5px}
|
112 |
-
.giftcard-message { margin:0 auto; width:270px; height:75px;padding:5px; line-height:15px; text-align:left;color:brown;border-radius:10px;border:1px solid gray; }
|
113 |
-
</style>
|
114 |
-
|
115 |
-
<script src="<?php echo $this->getSkinUrl('js/giftcard/jquery.min-1.11.1.js')?>"></script>
|
116 |
-
|
117 |
-
<?php Mage::log("version : ". Mage::getVersion());if((Mage::getVersion()=="1.8.1.0")||(Mage::getVersion()=="1.8.0.0")) :?>
|
118 |
-
<script src="<?php echo $this->getSkinUrl('js/giftcard/blurbox1.js')?>"></script>
|
119 |
-
<?php else :?>
|
120 |
-
<script src="<?php echo $this->getSkinUrl('js/giftcard/blurbox.js')?>"></script>
|
121 |
-
<style>
|
122 |
-
.col1-layout .product-view .product-shop {
|
123 |
-
float: left;
|
124 |
-
}</style>
|
125 |
-
<?php endif; ?>
|
126 |
-
<script>
|
127 |
-
var gctemp=$.noConflict();
|
128 |
-
gctemp(document).ready(function() {
|
129 |
-
gctemp(".pop").click(function() {
|
130 |
-
gctemp('.popup').blurbox({blur: 10, animateBlur: true}).show();
|
131 |
-
|
132 |
-
});
|
133 |
-
gctemp("#quick-close").click(function() {
|
134 |
-
|
135 |
-
//alert(pid);
|
136 |
-
gctemp('.popup').blurbox().hide();
|
137 |
-
|
138 |
-
});
|
139 |
-
|
140 |
-
gctemp("#giftcard_template").change(function() {
|
141 |
-
|
142 |
-
|
143 |
-
var array = gctemp('option:selected',gctemp(this)).val().split(",");
|
144 |
-
var text="#"+array[0];
|
145 |
-
var theme="#"+array[1];
|
146 |
-
var url='<?php echo $mediapath;?>';
|
147 |
-
var p='url('+url+array[2]+')';
|
148 |
-
var dpath='<?php $imgpath ?>';
|
149 |
-
var dcolor='<?php $textcol ?>';
|
150 |
-
var dthem= '<?php $themecol ?>';
|
151 |
-
var note=array[3];
|
152 |
-
if(array[0]!='')
|
153 |
-
{
|
154 |
-
gctemp(".themecolor").css("color",text);
|
155 |
-
gctemp(".textcolor").css("color",theme);
|
156 |
-
gctemp(".giftcard-preview-message-box").css('background-image',p);
|
157 |
-
gctemp(".gcnote").html(note);
|
158 |
-
}
|
159 |
-
else
|
160 |
-
{
|
161 |
-
gctemp(".themecolor").css("color",dcolor);
|
162 |
-
gctemp(".textcolor").css("color",dthem);
|
163 |
-
gctemp(".giftcard-preview-message-box").css('background-image',dpath);
|
164 |
-
|
165 |
-
}
|
166 |
-
|
167 |
-
|
168 |
-
});
|
169 |
-
|
170 |
-
});
|
171 |
-
</script>
|
172 |
-
<div class='pop' class="giftcard-preview-container">
|
173 |
-
<div class="giftcard-preview-message-box" >
|
174 |
-
|
175 |
-
</div>
|
176 |
-
|
177 |
-
<table class='tab' >
|
178 |
-
<tr><td colspan="2" style="padding-bottom:10px;"> <span class="proname themecolor"><?php echo $_product->getName();?></td></tr>
|
179 |
-
<tr><td style="width: 140px;">
|
180 |
-
<span class="froml textcolor"><?php echo $this->__('From') ?> : <span id='from' class="fromto themecolor" ></span></span></td>
|
181 |
-
<td >
|
182 |
-
<span class="tol " style="color:gray;">| </span><span class="tol textcolor"> <?php echo $this->__(' To') ?> : <span id='to' class="fromto themecolor" ></span></span></td></tr>
|
183 |
-
|
184 |
-
<tr><td colspan="2">
|
185 |
-
|
186 |
-
<div class="giftcard-message themecolor" id="txtCustName"></div></td>
|
187 |
-
</tr>
|
188 |
-
<tr><td colspan="2">
|
189 |
-
<div class="giftcard-code themecolor"><?php echo $this->__('Giftcard Code') ?>: <span class="textcolor" >XXX-XXX</span></div>
|
190 |
-
</td>
|
191 |
-
</tr>
|
192 |
-
<tr><td colspan="2">
|
193 |
-
|
194 |
-
<div class="val textcolor"><?php echo $this->__('Value') ?> : <br/><span class="amt themecolor"><?php echo $price?></span></div>
|
195 |
-
|
196 |
-
</td>
|
197 |
-
</tr>
|
198 |
-
<tr><td colspan="2">
|
199 |
-
<div class="gcnote textcolor"><?php echo $this->__('Giftcards only used for purchase in store only') ?></div>
|
200 |
-
</td></tr>
|
201 |
-
</table>
|
202 |
-
|
203 |
-
</div>
|
204 |
-
|
205 |
-
<!--Pop UP Div-->
|
206 |
-
|
207 |
-
<div class="popup" style="display:none;width:550px;height:350px;" >
|
208 |
-
<img class='imgright' src="<?php echo $close?>" id="quick-close" style="margin-right: -8px;margin-top: -8px;">
|
209 |
-
|
210 |
-
<div class="giftcard-preview-message-box" >
|
211 |
-
</div>
|
212 |
-
|
213 |
-
|
214 |
-
<table class='tab' >
|
215 |
-
<tr><td style="padding-bottom:10px;"> <span class="proname themecolor" ><?php echo $_product->getName();?></span></td></tr>
|
216 |
-
<tr><td style="width:140px">
|
217 |
-
<span class="froml textcolor"><?php echo $this->__('From') ?> : <span id='from1' class="fromto themecolor" ></span></span></td>
|
218 |
-
<td>
|
219 |
-
<span class="tol " style="color:gray;">| </span><span class="tol textcolor"> <?php echo $this->__(' To') ?> : <span id='to1' class="fromto themecolor" ></span></span></td>
|
220 |
-
</tr>
|
221 |
-
|
222 |
-
<tr><td colspan="2">
|
223 |
-
|
224 |
-
<div class="giftcard-message themecolor" id="txtCustName1"></div></td>
|
225 |
-
</tr>
|
226 |
-
<tr><td colspan="2">
|
227 |
-
<div class="giftcard-code themecolor"><?php echo $this->__('Giftcard Code') ?>: <span class="textcolor" >XXX-XXX</span></div>
|
228 |
-
</td>
|
229 |
-
</tr>
|
230 |
-
<tr><td colspan="2">
|
231 |
-
|
232 |
-
<div class="val textcolor"><?php echo $this->__('Value') ?> : <br/><span class="amt themecolor"><?php echo $price?> </span></div>
|
233 |
-
|
234 |
-
</td>
|
235 |
-
</tr>
|
236 |
-
<tr><td colspan="2">
|
237 |
-
<div class="gcnote textcolor"><?php echo $this->__('Giftcards only used for purchase in store only') ?></div>
|
238 |
-
</td></tr>
|
239 |
-
|
240 |
-
</table>
|
241 |
-
|
242 |
-
</div>
|
243 |
-
|
244 |
-
|
245 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
media/giftcard/bar.gif
DELETED
Binary file
|
media/giftcard/preview.png
ADDED
Binary file
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Kartparadigm_Giftcard</name>
|
4 |
-
<version>1.5.
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Giftcard Extension For Selling Giftcard type products in magento store</summary>
|
10 |
-
<description>
|
11 |
-
<notes>Giftcard Extension
|
12 |
<authors><author><name>Kartparadigm</name><user>kartparadigm</user><email>kartparadigm@gmail.com</email></author></authors>
|
13 |
<date>2015-03-31</date>
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir name="Kartparadigm"><dir name="Giftcard"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Form"><dir name="Renderer"><dir name="Fieldset"><file name="Element.php" hash="17050e37b24626ee24ad6ac2b7a4822a"/></dir></dir></dir></dir><dir name="Customer"><dir name="Edit"><dir name="Tab"><dir name="Giftcard"><file name="List.php" hash="7abb5f6a9d0098b30b65944b40fd9ad5"/></dir><file name="Giftcard.php" hash="a76ded858f806fcfbd98f55a22911a15"/></dir></dir></dir><dir name="Groupsend"><dir name="Edit"><file name="Form.php" hash="886813198d104b37cc8812b520f830d4"/></dir><file name="Edit.php" hash="d9bd86a23776d5244686ce4601cb7e31"/></dir><file name="Groupsend.php" hash="ce8108e5ed24c6925d840ab1e71ac35d"/><dir name="Registries"><dir name="Edit"><file name="Form.php" hash="a49e7bb6f609aa02863a2e31f7246355"/></dir><file name="Edit.php" hash="cab16c05aa27713b1f0ee1c7a87f0074"/><file name="Grid.php" hash="83e7cf397a098b8781d22739ee1f73f9"/></dir><file name="Registries.php" hash="1eac04049c6a5bf14c05529cfd1d040e"/><dir name="Templates"><dir name="Edit"><file name="Form.php" hash="17a96c18816422c8cd2b24cd4a191aef"/></dir><file name="Edit.php" hash="96ab9201e133b99ab6dc325fcfb2f161"/><file name="Grid.php" hash="69e8f1ebb651f59f76b2ce0401ee5d5e"/></dir><file name="Templates.php" hash="004967e1c9ebbc58a7bb4d1cd9cbeaf7"/></dir><file name="Balance.php" hash="86c44b60c5a7a45f20892f61a37b6e29"/><dir name="Catalog"><dir name="Product"><dir name="View"><file name="Type.php" hash="b5e6bfdfcd4e10bf347be102cc7b501b"/></dir></dir></dir><dir name="Payment"><file name="Form.php" hash="a3f96979e4213379e95746c280cfd934"/><file name="Info.php" hash="a77b1cbfc1a625997d255d2ca12752a0"/></dir><file name="View.php" hash="5ef34e972c5d02b5f2aa9491da9d33d5"/></dir><dir name="Helper"><file name="Data.php" hash="16ecfad5aff0b9b921d32823a2a860a5"/><file name="Payment.php" hash="bcd7ff2a288daba5c8757154e114b854"/></dir><dir name="Model"><file name="Custommethods.php" hash="3cebfb6a54d4a9ad3f6ad58a7dbf37e2"/><file name="Giftcard.php" hash="081146193dc762092716247ca8392565"/><file name="Giftcardtemplate.php" hash="fbb3912a24b90428915b2f88648c88a0"/><file name="Giftcardtrans.php" hash="5adb9c6700568f721b1fd639a7a5c549"/><dir name="Mysql4"><dir name="Giftcard"><file name="Collection.php" hash="fc8623fa3ef4eead6dae31ed78c5fc92"/></dir><file name="Giftcard.php" hash="c5b07a78a587883f3e189bfa324e9cc8"/><dir name="Giftcardtemplate"><file name="Collection.php" hash="ab9b4578b8f188e8a50b4c94d0725685"/></dir><file name="Giftcardtemplate.php" hash="3a4132f99a06bd4b20254377aadd19fc"/><dir name="Giftcardtrans"><file name="Collection.php" hash="6f3b6dc5328295ea86989abd02a0424c"/></dir><file name="Giftcardtrans.php" hash="fb63b8ebf8f84ffb4b0ada2e8e6b3068"/></dir><file name="Observer.php" hash="ea8de9f679457b1f1b33e94512078a58"/><dir name="Product"><file name="Type.php" hash="8f4056f991455ce5047887560bd42283"/></dir><dir name="Quote"><file name="Payment.php" hash="6ad5e1533144996c5589c5971cec133e"/></dir><dir name="Resource"><file name="Setup.php" hash="9a09b300732fdbe5ebcd4914e607b46f"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="GiftcardController.php" hash="6a097449c838d0d736abc79852862d81"/><file name="TemplateController.php" hash="92aa3ccc774cfbdbb16f22a630a34f71"/></dir><file name="CustomerController.php" hash="3c65b0337b06565b9b106a82afc706d6"/><file name="IndexController.php" hash="e4fb8ec50fdf8f25a810207b64e05f0d"/></dir><dir name="etc"><file name="adminhtml.xml" hash="9e34693359a38a91a86c59fa78125942"/><file name="config.xml" hash="42b89e028d48411ecfa3a0fe82dc4d6e"/><file name="system.xml" hash="033d2ecb65a17349092b0ee963e7f147"/></dir><dir name="sql"><dir name="kartparadigm_giftcard_setup"><file name="install-0.1.0.php" hash="832d74de34ac2105e69ae96db29ea848"/><file name="upgrade-0.1.0-0.1.1.php" hash="091e1f143d0b588364f6452db953b0ee"/><file name="upgrade-0.1.1-0.1.2 .php" hash="738146964a99b9752e00cfbce581de0e"/><file name="upgrade-0.1.2-0.1.3.php" hash="703f3f61b6ae27bf3ce52a3a0f0b64c6"/><file name="upgrade-0.1.3-0.1.4.php" hash="fe8b9c9ceb3955e85ceef9a99f123591"/><file name="upgrade-0.1.4-0.1.5.php" hash="6eb4e7e4c9abd0fca35e26b9ec7f4f09"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="giftcard.xml" hash="1c0f86139a17fac13d4393fccbdd7b74"/></dir></dir><dir name="kartparadigm"><dir name="template"><dir name="catalog"><dir name="form"><dir name="renderer"><dir name="fieldset"><file name="element.phtml" hash="e82890b8bd32a140ef66830ba7eea6ed"/><file name="element.phtml~" hash="e82890b8bd32a140ef66830ba7eea6ed"/></dir></dir></dir><dir name="product"><file name="edit.phtml" hash="b4071beacb31042d3e8fd5f5ac0c6127"/><file name="edit.phtml~" hash="b4071beacb31042d3e8fd5f5ac0c6127"/></dir></dir></dir></dir></dir><dir name="base"><dir name="default"><dir name="template"><dir name="kartparadigm"><dir name="giftcard"><dir name="customer"><file name="main.phtml" hash="d7eca62cebcb44d6386870f32e79b1d7"/></dir><file name="view.phtml" hash="d8356d74c529fa65d2a45814b249a2b8"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="kartparadigm"><file name="giftcard.xml" hash="19524e554cb965933c1a97a90c1a0759"/></dir></dir><dir name="template"><dir name="kartparadigm"><dir name="giftcard"><dir name="customer"><file name="balance.phtml" hash="74e76ca3735feab4bf02bc72090ba0b8"/><file name="balview.phtml" hash="22e843fd69058ca76527bd130b3b78d5"/><file name="shareview.phtml" hash="da8e03e56ad748f54a6dc8710dd2a558"/></dir><dir name="payment"><file name="form.phtml" hash="5bee798c8677379f565bd2ee6e05a79b"/></dir><dir name="product"><file name="coupon.phtml" hash="8b637da2ba83dec8d980eba60c629fc2"/><file name="giftcardprice.phtml" hash="b7412477510cc777380db91d18f639f3"/><file name="listprice.phtml" hash="ca21cf3ca82946ccaa20e0041d5e2da6"/><file name="media.phtml" hash="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Kartparadigm_Giftcard</name>
|
4 |
+
<version>1.5.3.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>OSL</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Giftcard Extension For Selling Giftcard type products in magento store</summary>
|
10 |
+
<description>Buy,Email,Post GiftCard for your loved ones with personalized message and unlimited templates for all occasion</description>
|
11 |
+
<notes>Kartparadigm Giftcard Extension Supports Magento 1.8.0, 1.8.1 and 1.9</notes>
|
12 |
<authors><author><name>Kartparadigm</name><user>kartparadigm</user><email>kartparadigm@gmail.com</email></author></authors>
|
13 |
<date>2015-03-31</date>
|
14 |
+
<time>10:24:58</time>
|
15 |
+
<contents><target name="magecommunity"><dir name="Kartparadigm"><dir name="Giftcard"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Form"><dir name="Renderer"><dir name="Fieldset"><file name="Element.php" hash="17050e37b24626ee24ad6ac2b7a4822a"/></dir></dir></dir></dir><dir name="Customer"><dir name="Edit"><dir name="Tab"><dir name="Giftcard"><file name="List.php" hash="7abb5f6a9d0098b30b65944b40fd9ad5"/></dir><file name="Giftcard.php" hash="a76ded858f806fcfbd98f55a22911a15"/></dir></dir></dir><dir name="Groupsend"><dir name="Edit"><file name="Form.php" hash="886813198d104b37cc8812b520f830d4"/></dir><file name="Edit.php" hash="d9bd86a23776d5244686ce4601cb7e31"/></dir><file name="Groupsend.php" hash="ce8108e5ed24c6925d840ab1e71ac35d"/><dir name="Registries"><dir name="Edit"><file name="Form.php" hash="a49e7bb6f609aa02863a2e31f7246355"/></dir><file name="Edit.php" hash="cab16c05aa27713b1f0ee1c7a87f0074"/><file name="Grid.php" hash="83e7cf397a098b8781d22739ee1f73f9"/></dir><file name="Registries.php" hash="1eac04049c6a5bf14c05529cfd1d040e"/><dir name="Templates"><dir name="Edit"><file name="Form.php" hash="17a96c18816422c8cd2b24cd4a191aef"/></dir><file name="Edit.php" hash="96ab9201e133b99ab6dc325fcfb2f161"/><file name="Grid.php" hash="69e8f1ebb651f59f76b2ce0401ee5d5e"/></dir><file name="Templates.php" hash="004967e1c9ebbc58a7bb4d1cd9cbeaf7"/></dir><file name="Balance.php" hash="86c44b60c5a7a45f20892f61a37b6e29"/><dir name="Catalog"><dir name="Product"><dir name="View"><file name="Type.php" hash="b5e6bfdfcd4e10bf347be102cc7b501b"/></dir></dir></dir><dir name="Payment"><file name="Form.php" hash="a3f96979e4213379e95746c280cfd934"/><file name="Info.php" hash="a77b1cbfc1a625997d255d2ca12752a0"/></dir><file name="View.php" hash="5ef34e972c5d02b5f2aa9491da9d33d5"/></dir><dir name="Helper"><file name="Data.php" hash="16ecfad5aff0b9b921d32823a2a860a5"/><file name="Payment.php" hash="bcd7ff2a288daba5c8757154e114b854"/></dir><dir name="Model"><file name="Custommethods.php" hash="3cebfb6a54d4a9ad3f6ad58a7dbf37e2"/><file name="Giftcard.php" hash="081146193dc762092716247ca8392565"/><file name="Giftcardtemplate.php" hash="fbb3912a24b90428915b2f88648c88a0"/><file name="Giftcardtrans.php" hash="5adb9c6700568f721b1fd639a7a5c549"/><dir name="Mysql4"><dir name="Giftcard"><file name="Collection.php" hash="fc8623fa3ef4eead6dae31ed78c5fc92"/></dir><file name="Giftcard.php" hash="c5b07a78a587883f3e189bfa324e9cc8"/><dir name="Giftcardtemplate"><file name="Collection.php" hash="ab9b4578b8f188e8a50b4c94d0725685"/></dir><file name="Giftcardtemplate.php" hash="3a4132f99a06bd4b20254377aadd19fc"/><dir name="Giftcardtrans"><file name="Collection.php" hash="6f3b6dc5328295ea86989abd02a0424c"/></dir><file name="Giftcardtrans.php" hash="fb63b8ebf8f84ffb4b0ada2e8e6b3068"/></dir><file name="Observer.php" hash="ea8de9f679457b1f1b33e94512078a58"/><dir name="Product"><file name="Type.php" hash="8f4056f991455ce5047887560bd42283"/></dir><dir name="Quote"><file name="Payment.php" hash="6ad5e1533144996c5589c5971cec133e"/></dir><dir name="Resource"><file name="Setup.php" hash="9a09b300732fdbe5ebcd4914e607b46f"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="GiftcardController.php" hash="6a097449c838d0d736abc79852862d81"/><file name="TemplateController.php" hash="92aa3ccc774cfbdbb16f22a630a34f71"/></dir><file name="CustomerController.php" hash="3c65b0337b06565b9b106a82afc706d6"/><file name="IndexController.php" hash="e4fb8ec50fdf8f25a810207b64e05f0d"/></dir><dir name="etc"><file name="adminhtml.xml" hash="9e34693359a38a91a86c59fa78125942"/><file name="config.xml" hash="42b89e028d48411ecfa3a0fe82dc4d6e"/><file name="system.xml" hash="033d2ecb65a17349092b0ee963e7f147"/></dir><dir name="sql"><dir name="kartparadigm_giftcard_setup"><file name="install-0.1.0.php" hash="832d74de34ac2105e69ae96db29ea848"/><file name="upgrade-0.1.0-0.1.1.php" hash="091e1f143d0b588364f6452db953b0ee"/><file name="upgrade-0.1.1-0.1.2 .php" hash="738146964a99b9752e00cfbce581de0e"/><file name="upgrade-0.1.2-0.1.3.php" hash="703f3f61b6ae27bf3ce52a3a0f0b64c6"/><file name="upgrade-0.1.3-0.1.4.php" hash="fe8b9c9ceb3955e85ceef9a99f123591"/><file name="upgrade-0.1.4-0.1.5.php" hash="6eb4e7e4c9abd0fca35e26b9ec7f4f09"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="giftcard.xml" hash="1c0f86139a17fac13d4393fccbdd7b74"/></dir></dir><dir name="kartparadigm"><dir name="template"><dir name="catalog"><dir name="form"><dir name="renderer"><dir name="fieldset"><file name="element.phtml" hash="e82890b8bd32a140ef66830ba7eea6ed"/><file name="element.phtml~" hash="e82890b8bd32a140ef66830ba7eea6ed"/></dir></dir></dir><dir name="product"><file name="edit.phtml" hash="b4071beacb31042d3e8fd5f5ac0c6127"/><file name="edit.phtml~" hash="b4071beacb31042d3e8fd5f5ac0c6127"/></dir></dir></dir></dir></dir><dir name="base"><dir name="default"><dir name="template"><dir name="kartparadigm"><dir name="giftcard"><dir name="customer"><file name="main.phtml" hash="d7eca62cebcb44d6386870f32e79b1d7"/></dir><file name="view.phtml" hash="d8356d74c529fa65d2a45814b249a2b8"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="kartparadigm"><file name="giftcard.xml" hash="19524e554cb965933c1a97a90c1a0759"/></dir></dir><dir name="template"><dir name="kartparadigm"><dir name="giftcard"><dir name="customer"><file name="balance.phtml" hash="74e76ca3735feab4bf02bc72090ba0b8"/><file name="balview.phtml" hash="22e843fd69058ca76527bd130b3b78d5"/><file name="shareview.phtml" hash="da8e03e56ad748f54a6dc8710dd2a558"/></dir><dir name="payment"><file name="form.phtml" hash="5bee798c8677379f565bd2ee6e05a79b"/></dir><dir name="product"><file name="coupon.phtml" hash="8b637da2ba83dec8d980eba60c629fc2"/><file name="giftcardprice.phtml" hash="b7412477510cc777380db91d18f639f3"/><file name="listprice.phtml" hash="ca21cf3ca82946ccaa20e0041d5e2da6"/><file name="media.phtml" hash="cd15010e979912d31ba05143b20209b7"/><file name="type.phtml" hash="d89f4b7c024bb550afabc6ab8a123b3e"/></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Kartparadigm_Giftcard.xml" hash="f5df5aa804a3e1df5efa551b8a5e7fe6"/></dir></target><target name="magelocale"><dir name="en_US"><dir name="template"><dir name="email"><dir name="giftcard"><file name="custom_email_template1.html" hash="ce295b88e3cf44626e469c93fd1e4af3"/></dir></dir></dir><file name="Kartparadigm_Giftcard.csv" hash="dc235c2229d9e2b2b40bf5e4bc69afe2"/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="js"><dir name="giftcard"><file name="blurbox.js" hash="27da8428a6b04675434e4f5fa6282a45"/><file name="blurbox1.js" hash="1d248e0b91cb6e61264e43c93dc497ce"/><file name="jquery.min-1.11.1.js" hash="8101d596b2b8fa35fe3a634ea342d7c3"/></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="giftcard"><file name="clos.png" hash="cfd4a4e03d31233d8a655394e5fdf278"/><file name="greet.jpg" hash="684c53e56cc7dd0cfdfaccdea9f6a58c"/><file name="preview.png" hash="bd08f7cdf45bdce8a19e094f6a83be77"/></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|