Version Notes
Get addwish on your site and we'll show your products on ours!
addwish is a wish list that lets users share the products they want with people who want to buy them. But unlike other wish lists, with addwish your products also appear as inspiration in searches for similar products on addwish.com. If addwish users select your product for their list, their family and friends are automatically directed to your web shop where they can make the purchase.
- Easy to install and maintenance free
- Increases traffic to your shop
- High conversion rates
Download this release
Release Info
Developer | addwish |
Extension | addwish |
Version | 0.9.0 |
Comparing to | |
See all releases |
Code changes from version 0.8.0 to 0.9.0
- app/code/local/Addwish/Awext/Block/Adminhtml/Awext/View/Tab/Searchconfig.php +7 -0
- app/code/local/Addwish/Awext/Block/Adminhtml/Awext/View/Tab/Searchconfig/List.php +20 -0
- app/code/local/Addwish/Awext/controllers/IndexController.php +46 -10
- app/design/adminhtml/default/default/template/awext/search-config.phtml +57 -0
- app/design/frontend/base/default/template/addwish/product-span.phtml +55 -16
- package.xml +7 -7
app/code/local/Addwish/Awext/Block/Adminhtml/Awext/View/Tab/Searchconfig.php
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class Addwish_Awext_Block_Adminhtml_Awext_View_Tab_Searchconfig extends Mage_Adminhtml_Block_Text_List
|
3 |
+
{
|
4 |
+
|
5 |
+
|
6 |
+
|
7 |
+
}
|
app/code/local/Addwish/Awext/Block/Adminhtml/Awext/View/Tab/Searchconfig/List.php
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class Addwish_Awext_Block_Adminhtml_Awext_View_Tab_Searchconfig_List extends Mage_Adminhtml_Block_Template
|
3 |
+
{
|
4 |
+
public function __construct()
|
5 |
+
{
|
6 |
+
$this->setTemplate('awext/search-config.phtml');
|
7 |
+
}
|
8 |
+
|
9 |
+
protected function _toHtml()
|
10 |
+
{
|
11 |
+
$awextCollection = Mage::getModel('awext/awext')->getCollection();
|
12 |
+
$this->assign('awextCollection', $awextCollection->getData());
|
13 |
+
return parent::_toHtml();
|
14 |
+
}
|
15 |
+
|
16 |
+
protected function _prepareLayout()
|
17 |
+
{
|
18 |
+
return parent::_prepareLayout();
|
19 |
+
}
|
20 |
+
}
|
app/code/local/Addwish/Awext/controllers/IndexController.php
CHANGED
@@ -103,12 +103,32 @@ $allowedIps=explode(",",$model->getData('ipaddress'));
|
|
103 |
$specialPrice = number_format($product->getSpecialPrice(), 2, '.', '');
|
104 |
$regularPrice = number_format($product->getPrice(), 2, '.', '');
|
105 |
$products_out.="<product><url>".$product->getProductUrl()."</url><title>".htmlspecialchars(htmlentities($product->getName(),ENT_QUOTES,'UTF-8'))."</title><imgurl>".$imageUrl."</imgurl>";
|
106 |
-
if(isset($specialPrice) && $specialPrice>0){
|
107 |
-
$
|
108 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
}else{
|
110 |
$products_out.= "<price>".$regularPrice."</price>";
|
111 |
}
|
|
|
|
|
|
|
112 |
if($product->getMetaKeyword()!=''){
|
113 |
$products_out.= "<keywords>".htmlspecialchars(htmlentities($product->getMetaKeyword(),ENT_QUOTES,'UTF-8'))."</keywords>";
|
114 |
}
|
@@ -137,16 +157,32 @@ $allowedIps=explode(",",$model->getData('ipaddress'));
|
|
137 |
if($product->getData('brand')){
|
138 |
$products_out.= "<brand>".$product->getData('brand')."</brand>";
|
139 |
}
|
140 |
-
|
141 |
-
if($product->
|
142 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
143 |
}else{
|
144 |
-
$
|
|
|
|
|
|
|
|
|
145 |
}
|
146 |
|
147 |
if($product->getData('gender')){
|
148 |
-
$attr = $product->getResource()->getAttribute("gender");
|
149 |
-
|
150 |
$products_out.= "<gender>".$genderLabel."</gender>";
|
151 |
}
|
152 |
if($product->getData('pricedetail')){
|
@@ -156,7 +192,7 @@ $attr = $product->getResource()->getAttribute("gender");
|
|
156 |
$products_out.= "</product>";
|
157 |
}
|
158 |
$products_out.= "</products>";
|
159 |
-
echo $products_out;
|
160 |
exit;
|
161 |
}
|
162 |
}
|
103 |
$specialPrice = number_format($product->getSpecialPrice(), 2, '.', '');
|
104 |
$regularPrice = number_format($product->getPrice(), 2, '.', '');
|
105 |
$products_out.="<product><url>".$product->getProductUrl()."</url><title>".htmlspecialchars(htmlentities($product->getName(),ENT_QUOTES,'UTF-8'))."</title><imgurl>".$imageUrl."</imgurl>";
|
106 |
+
if(isset($specialPrice) && $specialPrice>0 && $specialPrice<$regularPrice ){
|
107 |
+
$today = date('Y-m-d');
|
108 |
+
$today=date('Y-m-d', strtotime($today));;
|
109 |
+
$spcialPriceDateBegin = date('Y-m-d', strtotime($product->getSpecialFromDate()));
|
110 |
+
$spcialPriceDateEnd = date('Y-m-d', strtotime($product->getSpecialToDate()));
|
111 |
+
|
112 |
+
if (($today > $spcialPriceDateBegin) && ($today < $spcialPriceDateEnd))
|
113 |
+
{
|
114 |
+
$products_out.= "<price>".$specialPrice."</price>";
|
115 |
+
$products_out.= "<previousprice>".$regularPrice."</previousprice>";
|
116 |
+
}
|
117 |
+
else
|
118 |
+
{
|
119 |
+
$products_out.= "<price>".$regularPrice."</price>";
|
120 |
+
}
|
121 |
+
|
122 |
+
|
123 |
+
|
124 |
+
|
125 |
+
|
126 |
}else{
|
127 |
$products_out.= "<price>".$regularPrice."</price>";
|
128 |
}
|
129 |
+
|
130 |
+
|
131 |
+
|
132 |
if($product->getMetaKeyword()!=''){
|
133 |
$products_out.= "<keywords>".htmlspecialchars(htmlentities($product->getMetaKeyword(),ENT_QUOTES,'UTF-8'))."</keywords>";
|
134 |
}
|
157 |
if($product->getData('brand')){
|
158 |
$products_out.= "<brand>".$product->getData('brand')."</brand>";
|
159 |
}
|
160 |
+
$product_inStock=0;
|
161 |
+
if($product->isConfigurable()){
|
162 |
+
$allProducts = $product->getTypeInstance(true)->getUsedProducts(null, $product);
|
163 |
+
foreach ($allProducts as $productD) {
|
164 |
+
if (!$productD->isSaleable()|| $productD->getIsInStock()==0) {
|
165 |
+
//out of stock for check child simple product
|
166 |
+
}else{
|
167 |
+
$product_inStock=1;
|
168 |
+
}
|
169 |
+
}
|
170 |
+
if($product_inStock==1){
|
171 |
+
$products_out.= "<instock>true</instock>";
|
172 |
+
}else{
|
173 |
+
$products_out.= "<instock>false</instock>";
|
174 |
+
}
|
175 |
}else{
|
176 |
+
if($product->isInStock()){
|
177 |
+
$products_out.= "<instock>true</instock>";
|
178 |
+
}else{
|
179 |
+
$products_out.= "<instock>false</instock>";
|
180 |
+
}
|
181 |
}
|
182 |
|
183 |
if($product->getData('gender')){
|
184 |
+
$attr = $product->getResource()->getAttribute("gender");
|
185 |
+
$genderLabel = $attr->getSource()->getOptionText($product->getData('gender'));
|
186 |
$products_out.= "<gender>".$genderLabel."</gender>";
|
187 |
}
|
188 |
if($product->getData('pricedetail')){
|
192 |
$products_out.= "</product>";
|
193 |
}
|
194 |
$products_out.= "</products>";
|
195 |
+
echo $products_out;
|
196 |
exit;
|
197 |
}
|
198 |
}
|
app/design/adminhtml/default/default/template/awext/search-config.phtml
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<style type="text/css">
|
2 |
+
table.addwishgrid {
|
3 |
+
width: 100%;
|
4 |
+
border-collapse: collapse;
|
5 |
+
/* margin:50px auto; */
|
6 |
+
}
|
7 |
+
/* Zebra striping */
|
8 |
+
table.addwishgrid tr:nth-of-type(odd) {
|
9 |
+
background: #eee;
|
10 |
+
}
|
11 |
+
table.addwishgrid th {
|
12 |
+
background: #6f8992;
|
13 |
+
color: white;
|
14 |
+
font-weight: bold;
|
15 |
+
}
|
16 |
+
table.addwishgrid td,table.addwishgrid th {
|
17 |
+
padding: 6px;
|
18 |
+
border: 1px solid #ccc;
|
19 |
+
text-align: left;
|
20 |
+
font-size: 13px;
|
21 |
+
}
|
22 |
+
</style>
|
23 |
+
<form action='' method='post'>
|
24 |
+
<input type='hidden' name='action' value='updateattributes'/>
|
25 |
+
<input name="form_key" type="hidden" value="<?php echo Mage::getSingleton('core/session')->getFormKey() ?>" />
|
26 |
+
<div style="float: right; margin-right: 20px;">
|
27 |
+
<input type="submit" class="form-button" value="Save" name="submit">
|
28 |
+
</div>
|
29 |
+
<table class="addwishgrid">
|
30 |
+
<thead>
|
31 |
+
<tr>
|
32 |
+
<th>Attribute Name</th>
|
33 |
+
<th>Attribute Code</th>
|
34 |
+
<th>Attribute Type</th>
|
35 |
+
<th>Include ?</th>
|
36 |
+
</tr>
|
37 |
+
</thead>
|
38 |
+
<tbody>
|
39 |
+
<?php
|
40 |
+
$productAttrs = Mage::getResourceModel('catalog/product_attribute_collection');
|
41 |
+
$model = Mage::getModel('awext/awext')->load(1);
|
42 |
+
$selected_attributes=explode(",",$model->enabled_attributes);
|
43 |
+
foreach ($productAttrs as $productAttr) {
|
44 |
+
/** @var Mage_Catalog_Model_Resource_Eav_Attribute $productAttr */
|
45 |
+
if($productAttr->getData('is_filterable')==1){
|
46 |
+
if(in_array($productAttr->getAttributeCode(),$selected_attributes)){
|
47 |
+
$checked='checked="checked"';
|
48 |
+
}else{
|
49 |
+
$checked='';
|
50 |
+
}
|
51 |
+
echo "<tr><td>".$productAttr->getFrontendLabel()."</td><td>".$productAttr->getAttributeCode()."</td><td>".$productAttr->getFrontendInput()."</td><td><input type='checkbox' name='includein[]' value='".$productAttr->getAttributeCode()."' ".$checked."></td></tr>";
|
52 |
+
}
|
53 |
+
}
|
54 |
+
?>
|
55 |
+
</tbody>
|
56 |
+
</table>
|
57 |
+
</form>
|
app/design/frontend/base/default/template/addwish/product-span.phtml
CHANGED
@@ -8,12 +8,55 @@ $imageUrl = Mage::helper('catalog/image')->init($product , 'thumbnail')->resize(
|
|
8 |
<span class="addwish-product-info" style="display:none"
|
9 |
data-title="<?php echo htmlentities($product->getName());?>"
|
10 |
data-imgurl="<?php echo $imageUrl ;?>"
|
|
|
11 |
<?php
|
12 |
-
|
13 |
-
|
14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
}else{
|
16 |
-
echo 'data-price="'.$regularPrice.'" ';
|
17 |
}
|
18 |
?>
|
19 |
data-productnumber="<?php echo $product->getId();?>"
|
@@ -22,7 +65,7 @@ data-url="<?php echo $product->getProductUrl();?>"
|
|
22 |
data-currency="<?php echo Mage::app()->getStore()->getCurrentCurrencyCode();?>"
|
23 |
<?php
|
24 |
if($product->getData('brand')){
|
25 |
-
echo "data-brand='".$product->getData('brand')."'";
|
26 |
}
|
27 |
|
28 |
$cats = $product->getCategoryIds();
|
@@ -35,30 +78,26 @@ foreach ($cats as $category_id) {
|
|
35 |
}
|
36 |
?>
|
37 |
data-category='<?php echo addslashes(json_encode($catJsonArray));?>'
|
38 |
-
<?php
|
39 |
-
echo "data-instock='true'";
|
40 |
-
}else{
|
41 |
-
echo "data-instock='false'";
|
42 |
-
}
|
43 |
if($product->getData('gender')){
|
44 |
$attr = $product->getResource()->getAttribute("gender");
|
45 |
$genderLabel = $attr->getSource()->getOptionText($product->getData('gender'));
|
46 |
-
echo "data-gender='".$genderLabel."'";
|
47 |
}
|
48 |
if($product->getData('pricedetail')){
|
49 |
-
echo "data-pricedetail='".$product->getData('pricedetail')."'";
|
50 |
}
|
51 |
if($product->getData('score')){
|
52 |
-
echo "data-score='".$product->getData('score')."'";
|
53 |
}
|
54 |
if($product->getData('newsletter-promotion')){
|
55 |
-
echo "data-newsletter-promotion='".$product->getData('newsletter-promotion')."'";
|
56 |
}
|
57 |
if($product->getData('recurrent')){
|
58 |
-
echo "data-recurrent='".$product->getData('recurrent')."'";
|
59 |
}
|
60 |
if($product->getData('sold-related')){
|
61 |
-
echo "data-sold-related='".$product->getData('sold-related')."'";
|
62 |
}
|
63 |
$uencURL=Mage::helper('checkout/cart')->getAddUrl($product);
|
64 |
$elem1=explode("uenc/",$uencURL);
|
8 |
<span class="addwish-product-info" style="display:none"
|
9 |
data-title="<?php echo htmlentities($product->getName());?>"
|
10 |
data-imgurl="<?php echo $imageUrl ;?>"
|
11 |
+
|
12 |
<?php
|
13 |
+
|
14 |
+
|
15 |
+
$product_inStock=0;
|
16 |
+
if($product->isConfigurable()){
|
17 |
+
$allProducts = $product->getTypeInstance(true)->getUsedProducts(null, $product);
|
18 |
+
foreach ($allProducts as $productD) {
|
19 |
+
if (!$productD->isSaleable()|| $productD->getIsInStock()==0) {
|
20 |
+
//out of stock for check child simple product
|
21 |
+
}else{
|
22 |
+
$product_inStock=1;
|
23 |
+
}
|
24 |
+
}
|
25 |
+
if($product_inStock==1){
|
26 |
+
echo " data-instock='true'";
|
27 |
+
}else{
|
28 |
+
echo " data-instock='false'";
|
29 |
+
}
|
30 |
+
}else{
|
31 |
+
if($product->isInStock()){
|
32 |
+
echo " data-instock='true'";
|
33 |
+
}else{
|
34 |
+
echo " data-instock='false'";
|
35 |
+
}
|
36 |
+
}
|
37 |
+
|
38 |
+
if(isset($specialPrice) && $specialPrice>0 && $specialPrice<$regularPrice ){
|
39 |
+
$today = date('Y-m-d');
|
40 |
+
$today=date('Y-m-d', strtotime($today));;
|
41 |
+
$spcialPriceDateBegin = date('Y-m-d', strtotime($product->getSpecialFromDate()));
|
42 |
+
$spcialPriceDateEnd = date('Y-m-d', strtotime($product->getSpecialToDate()));
|
43 |
+
|
44 |
+
if (($today > $spcialPriceDateBegin) && ($today < $spcialPriceDateEnd))
|
45 |
+
{
|
46 |
+
echo ' data-price="'.$specialPrice.'"';
|
47 |
+
echo ' data-previousprice="'.$regularPrice.'" ';
|
48 |
+
}
|
49 |
+
else
|
50 |
+
{
|
51 |
+
echo ' data-price="'.$regularPrice.'" ';
|
52 |
+
}
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
|
57 |
+
|
58 |
}else{
|
59 |
+
echo ' data-price="'.$regularPrice.'" ';
|
60 |
}
|
61 |
?>
|
62 |
data-productnumber="<?php echo $product->getId();?>"
|
65 |
data-currency="<?php echo Mage::app()->getStore()->getCurrentCurrencyCode();?>"
|
66 |
<?php
|
67 |
if($product->getData('brand')){
|
68 |
+
echo " data-brand='".$product->getData('brand')."'";
|
69 |
}
|
70 |
|
71 |
$cats = $product->getCategoryIds();
|
78 |
}
|
79 |
?>
|
80 |
data-category='<?php echo addslashes(json_encode($catJsonArray));?>'
|
81 |
+
<?php
|
|
|
|
|
|
|
|
|
82 |
if($product->getData('gender')){
|
83 |
$attr = $product->getResource()->getAttribute("gender");
|
84 |
$genderLabel = $attr->getSource()->getOptionText($product->getData('gender'));
|
85 |
+
echo " data-gender='".$genderLabel."'";
|
86 |
}
|
87 |
if($product->getData('pricedetail')){
|
88 |
+
echo " data-pricedetail='".$product->getData('pricedetail')."'";
|
89 |
}
|
90 |
if($product->getData('score')){
|
91 |
+
echo " data-score='".$product->getData('score')."'";
|
92 |
}
|
93 |
if($product->getData('newsletter-promotion')){
|
94 |
+
echo " data-newsletter-promotion='".$product->getData('newsletter-promotion')."'";
|
95 |
}
|
96 |
if($product->getData('recurrent')){
|
97 |
+
echo " data-recurrent='".$product->getData('recurrent')."'";
|
98 |
}
|
99 |
if($product->getData('sold-related')){
|
100 |
+
echo " data-sold-related='".$product->getData('sold-related')."'";
|
101 |
}
|
102 |
$uencURL=Mage::helper('checkout/cart')->getAddUrl($product);
|
103 |
$elem1=explode("uenc/",$uencURL);
|
package.xml
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>addwish</name>
|
4 |
-
<version>0.
|
5 |
-
<stability>
|
6 |
-
<license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
-
<summary>New and updated
|
10 |
<description><p><b>Get addwish on your site and we'll show your products on ours!</b></p>
|
11 |

|
12 |
<p>addwish is a wish list that lets users share the products they want with people who want to buy them. But unlike other wish lists, with addwish your products also appear as inspiration in searches for similar products on addwish.com. If addwish users select your product for their list, their family and friends are automatically directed to your web shop where they can make the purchase. </p>
|
@@ -26,9 +26,9 @@
|
|
26 |
<li>High conversion rates</li>
|
27 |
</ul></notes>
|
28 |
<authors><author><name>addwish</name><user>addwish</user><email>krj@addwish.com</email></author></authors>
|
29 |
-
<date>2016-
|
30 |
-
<time>
|
31 |
-
<contents><target name="magelocal"><dir name="Addwish"><dir name="Awext"><dir name="Block"><dir name="Adminhtml"><dir name="Awext"><file name="Grid.php" hash="0a9e0cc01157a49a58cddf0ef4eddbad"/><file name="Renderer.php" hash="f5f132bb8089270358be38f9e1fb342d"/><dir name="View"><dir name="Tab"><dir name="Details"><file name="List.php" hash="629a98942f2354a0a10d14e8564fc542"/></dir><file name="Details.php" hash="9431059a450be7a0bb9d69867c2b2b10"/><file name="Form.php" hash="14b1192bea84fbee58e47ff749a004f4"/><dir name="Recommend"><file name="List.php" hash="a8f994f1e5a29abf1f4bbf48e826e1d2"/></dir><file name="Recommend.php" hash="5d4fe965a062adcb51567c93e5adec2f"/><dir name="Search"><file name="List.php" hash="c556a6030e13ae9933bdf16e2ff1ff33"/></dir><file name="Search.php" hash="f194d4fa52fa3e106baa49ffd981de06"/></dir><file name="Tabs.php" hash="51d7b9c59068451c28bf614d42fe303d"/></dir><file name="View.php" hash="a5a5aa835bdbaf1102b50e90dec526a8"/></dir><file name="Awext.php" hash="2e46d78792ff55c3285d77780ba3e784"/></dir><file name="Awext.php" hash="5d627b94fe5a46ab3c5a77debbabcff6"/></dir><dir name="Helper"><file name="Data.php" hash="cb01c88cb51f7576e38209e495593b0f"/></dir><dir name="Model"><file name="Awext.php" hash="1925cb6fd94cc7cd6baecda71964a424"/><dir name="Mysql4"><dir name="Awext"><file name="Collection.php" hash="12afe62372c67a5bd9154695c8d095f3"/></dir><file name="Awext.php" hash="363b3c47f302192e5aa815cde224ae10"/></dir><file name="Observer.php" hash="e85fea849acf03c9353e557588e3f21d"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="AwextController.php" hash="08cabd178385fe6bfebf94fa99454fa9"/></dir><file name="IndexController.php" hash="
|
32 |
<compatible/>
|
33 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
34 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>addwish</name>
|
4 |
+
<version>0.9.0</version>
|
5 |
+
<stability>devel</stability>
|
6 |
+
<license>GNU General Public License (GPL)</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
+
<summary>New and updated extension to integrate all addwish features</summary>
|
10 |
<description><p><b>Get addwish on your site and we'll show your products on ours!</b></p>
|
11 |

|
12 |
<p>addwish is a wish list that lets users share the products they want with people who want to buy them. But unlike other wish lists, with addwish your products also appear as inspiration in searches for similar products on addwish.com. If addwish users select your product for their list, their family and friends are automatically directed to your web shop where they can make the purchase. </p>
|
26 |
<li>High conversion rates</li>
|
27 |
</ul></notes>
|
28 |
<authors><author><name>addwish</name><user>addwish</user><email>krj@addwish.com</email></author></authors>
|
29 |
+
<date>2016-04-21</date>
|
30 |
+
<time>05:19:16</time>
|
31 |
+
<contents><target name="magelocal"><dir name="Addwish"><dir name="Awext"><dir name="Block"><dir name="Adminhtml"><dir name="Awext"><file name="Grid.php" hash="0a9e0cc01157a49a58cddf0ef4eddbad"/><file name="Renderer.php" hash="f5f132bb8089270358be38f9e1fb342d"/><dir name="View"><dir name="Tab"><dir name="Details"><file name="List.php" hash="629a98942f2354a0a10d14e8564fc542"/></dir><file name="Details.php" hash="9431059a450be7a0bb9d69867c2b2b10"/><file name="Form.php" hash="14b1192bea84fbee58e47ff749a004f4"/><dir name="Recommend"><file name="List.php" hash="a8f994f1e5a29abf1f4bbf48e826e1d2"/></dir><file name="Recommend.php" hash="5d4fe965a062adcb51567c93e5adec2f"/><dir name="Search"><file name="List.php" hash="c556a6030e13ae9933bdf16e2ff1ff33"/></dir><file name="Search.php" hash="f194d4fa52fa3e106baa49ffd981de06"/><dir name="Searchconfig"><file name="List.php" hash="6ef64a77cfc24144aa3a85515f6ce22b"/></dir><file name="Searchconfig.php" hash="ce2a937906c8f2d13552d06b8c7b4f69"/></dir><file name="Tabs.php" hash="51d7b9c59068451c28bf614d42fe303d"/></dir><file name="View.php" hash="a5a5aa835bdbaf1102b50e90dec526a8"/></dir><file name="Awext.php" hash="2e46d78792ff55c3285d77780ba3e784"/></dir><file name="Awext.php" hash="5d627b94fe5a46ab3c5a77debbabcff6"/></dir><dir name="Helper"><file name="Data.php" hash="cb01c88cb51f7576e38209e495593b0f"/></dir><dir name="Model"><file name="Awext.php" hash="1925cb6fd94cc7cd6baecda71964a424"/><dir name="Mysql4"><dir name="Awext"><file name="Collection.php" hash="12afe62372c67a5bd9154695c8d095f3"/></dir><file name="Awext.php" hash="363b3c47f302192e5aa815cde224ae10"/></dir><file name="Observer.php" hash="e85fea849acf03c9353e557588e3f21d"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="AwextController.php" hash="08cabd178385fe6bfebf94fa99454fa9"/></dir><file name="IndexController.php" hash="75a35231f563c1528f1e0268268ad499"/></dir><dir name="etc"><file name="config.xml" hash="c2c08a809a509d1b65dfa213594ebf07"/></dir><dir name="sql"><dir name="addwish_setup"><file name="mysql4-install-0.0.4.php" hash="77a5d3d50380396c9bd2a9dfdfea8905"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="css"><file name="addwish.css" hash="f8711a6d3845f2c39698ca95064abb4c"/></dir><dir name="images"><dir name="addwish"><file name="addwish.png" hash="a588d24d1919d9206eff40a886b88ef1"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="awext.xml" hash="4b3cd2d742068567c1c5c67fe349114d"/></dir><dir name="template"><dir name="awext"><file name="list.phtml" hash="bb61fbc456f4fc2ff550d0ffbd9e219e"/><file name="recommendations.phtml" hash="c6b1d8078020f427ce5a73e5566537d4"/><file name="search-config.phtml" hash="03ba55d93b39fb2bedc088ae06a4a884"/><file name="search.phtml" hash="bcf56fe0d8728a45ca5421a0d6273385"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="awext.xml" hash="55de3edcbfdd85884f58b322f88cfc27"/></dir><dir name="template"><dir name="addwish"><file name="addwish-head.phtml" hash="c5b6fa2cae55ad1ddd4a5c64f8d532f6"/><file name="basket-span.phtml" hash="43ae1f4ca8daad61d16ef84bbfcab2cf"/><file name="conversion-span.phtml" hash="69ab18c525182edc1b83b0690556ac8c"/><file name="integrator.phtml" hash="a631b2e39787aa89c76065e4177fe218"/><file name="product-span.phtml" hash="f7a43491071cca128eef424b93a6a971"/><file name="search-result-page.phtml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="upsells-page.phtml" hash="ac41002da8c7bb57233599a00053ef77"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Addwish_Awext.xml" hash="fea2883f86536f249670eea31980f72c"/></dir></target></contents>
|
32 |
<compatible/>
|
33 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
34 |
</package>
|