Version Notes
Please note: first test all modules in a test store then install theme on your original store. Always make backup of your store before installation.
Download this release
Release Info
Developer | Hassan Barza |
Extension | Codnitive_Sidenav |
Version | 1.7.20 |
Comparing to | |
See all releases |
Code changes from version 1.6.94 to 1.7.20
- app/code/community/Codnitive/Extifcon/Model/Compiler.php +6 -2
- app/code/community/Codnitive/Extifcon/etc/config.xml +1 -1
- app/code/community/Codnitive/Sidenav/Block/Navigation.php +13 -3
- app/code/community/Codnitive/Sidenav/Model/Config.php +29 -12
- app/code/community/Codnitive/Sidenav/etc/config.xml +2 -1
- app/code/community/Codnitive/Sidenav/etc/system.xml +31 -18
- app/code/local/Codnitive/Codall/etc/config.xml +1 -1
- app/code/local/Codnitive/Codall/etc/system.xml +1 -1
- app/design/frontend/base/default/layout/sidenav.xml +16 -4
- app/design/frontend/base/default/template/codnitive/catalog/navigation/customer.phtml +0 -53
- app/design/frontend/base/default/template/codnitive/catalog/navigation/right.phtml +0 -53
- app/design/frontend/base/default/template/codnitive/{catalog/navigation/left.phtml → sidenav/navigation.phtml} +3 -10
- app/etc/modules/Codnitive_Codall.xml +1 -1
- app/etc/modules/Codnitive_Extifcon.xml +1 -1
- app/etc/modules/Codnitive_Sidenav.xml +1 -1
- app/locale/en_US/Codnitive_Sidenav.csv +2 -0
- app/locale/fa_IR/Codnitive_Sidenav.csv +2 -0
- package.xml +4 -4
- skin/frontend/default/blank/css/sidenav.css +2 -1
- skin/frontend/default/default/css/sidenav.css +2 -1
- skin/frontend/default/f002/css/sidenav.css +2 -1
- skin/frontend/default/modern/css/sidenav.css +2 -1
app/code/community/Codnitive/Extifcon/Model/Compiler.php
CHANGED
@@ -348,12 +348,14 @@ class Codnitive_Extifcon_Model_Compiler
|
|
348 |
switch ($condition) {
|
349 |
case '0':
|
350 |
case 'false':
|
|
|
351 |
$condition = false;
|
352 |
break;
|
353 |
|
|
|
354 |
case '1':
|
355 |
case 'true':
|
356 |
-
case '':
|
357 |
$condition = true;
|
358 |
break;
|
359 |
}
|
@@ -371,14 +373,16 @@ class Codnitive_Extifcon_Model_Compiler
|
|
371 |
{
|
372 |
$config = (string)Mage::getStoreConfig($configPath);
|
373 |
switch ($config) {
|
|
|
374 |
case '0':
|
375 |
case 'false':
|
376 |
-
case '':
|
377 |
$config = false;
|
378 |
break;
|
379 |
|
380 |
case '1':
|
381 |
case 'true':
|
|
|
382 |
$config = true;
|
383 |
break;
|
384 |
}
|
348 |
switch ($condition) {
|
349 |
case '0':
|
350 |
case 'false':
|
351 |
+
case 'FALSE':
|
352 |
$condition = false;
|
353 |
break;
|
354 |
|
355 |
+
case '':
|
356 |
case '1':
|
357 |
case 'true':
|
358 |
+
case 'TRUE':
|
359 |
$condition = true;
|
360 |
break;
|
361 |
}
|
373 |
{
|
374 |
$config = (string)Mage::getStoreConfig($configPath);
|
375 |
switch ($config) {
|
376 |
+
case '':
|
377 |
case '0':
|
378 |
case 'false':
|
379 |
+
case 'FALSE':
|
380 |
$config = false;
|
381 |
break;
|
382 |
|
383 |
case '1':
|
384 |
case 'true':
|
385 |
+
case 'TRUE':
|
386 |
$config = true;
|
387 |
break;
|
388 |
}
|
app/code/community/Codnitive/Extifcon/etc/config.xml
CHANGED
@@ -25,7 +25,7 @@
|
|
25 |
<config>
|
26 |
<modules>
|
27 |
<Codnitive_Extifcon>
|
28 |
-
<version>1.6.
|
29 |
<title>Extended ifconfig</title>
|
30 |
<link><![CDATA[http://www.codnitive.com/]]></link>
|
31 |
</Codnitive_Extifcon>
|
25 |
<config>
|
26 |
<modules>
|
27 |
<Codnitive_Extifcon>
|
28 |
+
<version>1.6.06 Beta</version>
|
29 |
<title>Extended ifconfig</title>
|
30 |
<link><![CDATA[http://www.codnitive.com/]]></link>
|
31 |
</Codnitive_Extifcon>
|
app/code/community/Codnitive/Sidenav/Block/Navigation.php
CHANGED
@@ -46,7 +46,7 @@ class Codnitive_Sidenav_Block_Navigation extends Mage_Catalog_Block_Navigation
|
|
46 |
public function getCategoriesNavMenu()
|
47 |
{
|
48 |
$navigationMenu = $this->renderCategoriesMenuHtml(0);
|
49 |
-
return $navigationMenu ? $navigationMenu :
|
50 |
}
|
51 |
|
52 |
/**
|
@@ -224,7 +224,9 @@ class Codnitive_Sidenav_Block_Navigation extends Mage_Catalog_Block_Navigation
|
|
224 |
->setCurrentCategory($category->getID())
|
225 |
->getProductCollection()
|
226 |
->getSize();
|
227 |
-
$
|
|
|
|
|
228 |
}
|
229 |
|
230 |
// close wrapper
|
@@ -313,7 +315,11 @@ class Codnitive_Sidenav_Block_Navigation extends Mage_Catalog_Block_Navigation
|
|
313 |
/**
|
314 |
* Get extension enable status
|
315 |
*
|
316 |
-
* @
|
|
|
|
|
|
|
|
|
317 |
*/
|
318 |
public function getCheckActive()
|
319 |
{
|
@@ -323,6 +329,10 @@ class Codnitive_Sidenav_Block_Navigation extends Mage_Catalog_Block_Navigation
|
|
323 |
/**
|
324 |
* Get selected column
|
325 |
*
|
|
|
|
|
|
|
|
|
326 |
* @return string
|
327 |
*/
|
328 |
public function getColumn()
|
46 |
public function getCategoriesNavMenu()
|
47 |
{
|
48 |
$navigationMenu = $this->renderCategoriesMenuHtml(0);
|
49 |
+
return $navigationMenu ? $navigationMenu : false;
|
50 |
}
|
51 |
|
52 |
/**
|
224 |
->setCurrentCategory($category->getID())
|
225 |
->getProductCollection()
|
226 |
->getSize();
|
227 |
+
if (($config->removeZeroCount() && $count > 0) || !$config->removeZeroCount()) {
|
228 |
+
$html[] = '<span class="product-count">(' . $count . ')</span>';
|
229 |
+
}
|
230 |
}
|
231 |
|
232 |
// close wrapper
|
315 |
/**
|
316 |
* Get extension enable status
|
317 |
*
|
318 |
+
* @deprecated after 1.7.20
|
319 |
+
* We don't need to check for module activation option
|
320 |
+
* in template, we check it in layout.
|
321 |
+
*
|
322 |
+
* @return boolean
|
323 |
*/
|
324 |
public function getCheckActive()
|
325 |
{
|
329 |
/**
|
330 |
* Get selected column
|
331 |
*
|
332 |
+
* @deprecated after 1.7.20
|
333 |
+
* We don't need to check for selected column option
|
334 |
+
* in template, we check it in layout.
|
335 |
+
*
|
336 |
* @return string
|
337 |
*/
|
338 |
public function getColumn()
|
app/code/community/Codnitive/Sidenav/Model/Config.php
CHANGED
@@ -42,17 +42,24 @@ class Codnitive_Sidenav_Model_Config extends Mage_Catalog_Model_Category
|
|
42 |
*/
|
43 |
public function getThumbnailImageUrl()
|
44 |
{
|
45 |
-
$
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
}
|
51 |
|
52 |
/**
|
53 |
* Check for extension enable option status
|
54 |
*
|
55 |
-
* @return
|
56 |
*/
|
57 |
public function checkActive()
|
58 |
{
|
@@ -67,13 +74,13 @@ class Codnitive_Sidenav_Model_Config extends Mage_Catalog_Model_Category
|
|
67 |
public function setTitle()
|
68 |
{
|
69 |
$title = Mage::getStoreConfig('codnitivecatalog/sidenav/title');
|
70 |
-
return !empty
|
71 |
}
|
72 |
|
73 |
/**
|
74 |
* Check for top navigation remove stting
|
75 |
*
|
76 |
-
* @return
|
77 |
*/
|
78 |
public function getRemoveTopNav()
|
79 |
{
|
@@ -113,7 +120,7 @@ class Codnitive_Sidenav_Model_Config extends Mage_Catalog_Model_Category
|
|
113 |
/**
|
114 |
* Get collapsible menu status
|
115 |
*
|
116 |
-
* @return
|
117 |
*/
|
118 |
public function getCollapsible()
|
119 |
{
|
@@ -123,17 +130,27 @@ class Codnitive_Sidenav_Model_Config extends Mage_Catalog_Model_Category
|
|
123 |
/**
|
124 |
* Get show product count setting
|
125 |
*
|
126 |
-
* @return
|
127 |
*/
|
128 |
public function getShowProductCount()
|
129 |
{
|
130 |
return Mage::getStoreConfig('codnitivecatalog/sidenav/product_count');
|
131 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
|
133 |
/**
|
134 |
* Check for extension enable option status
|
135 |
*
|
136 |
-
* @return
|
137 |
*/
|
138 |
public function getThumbImageActive()
|
139 |
{
|
@@ -143,7 +160,7 @@ class Codnitive_Sidenav_Model_Config extends Mage_Catalog_Model_Category
|
|
143 |
/**
|
144 |
* Get thumbnail size setting
|
145 |
*
|
146 |
-
* @return
|
147 |
*/
|
148 |
public function getThumbSize()
|
149 |
{
|
42 |
*/
|
43 |
public function getThumbnailImageUrl()
|
44 |
{
|
45 |
+
return $this->getImageUrl();
|
46 |
+
|
47 |
+
/**
|
48 |
+
* @deprecated after 1.7.20
|
49 |
+
*
|
50 |
+
* we can get thumbnail image url via parent "getImageUrl()" method
|
51 |
+
*/
|
52 |
+
// $url = false;
|
53 |
+
// if ($image = $this->getThumbnail()) {
|
54 |
+
// $url = Mage::getBaseUrl('media').'catalog/category/'.$image;
|
55 |
+
// }
|
56 |
+
// return $url;
|
57 |
}
|
58 |
|
59 |
/**
|
60 |
* Check for extension enable option status
|
61 |
*
|
62 |
+
* @return boolean
|
63 |
*/
|
64 |
public function checkActive()
|
65 |
{
|
74 |
public function setTitle()
|
75 |
{
|
76 |
$title = Mage::getStoreConfig('codnitivecatalog/sidenav/title');
|
77 |
+
return !empty($title) ? $title : 'Categories';
|
78 |
}
|
79 |
|
80 |
/**
|
81 |
* Check for top navigation remove stting
|
82 |
*
|
83 |
+
* @return boolean
|
84 |
*/
|
85 |
public function getRemoveTopNav()
|
86 |
{
|
120 |
/**
|
121 |
* Get collapsible menu status
|
122 |
*
|
123 |
+
* @return boolean
|
124 |
*/
|
125 |
public function getCollapsible()
|
126 |
{
|
130 |
/**
|
131 |
* Get show product count setting
|
132 |
*
|
133 |
+
* @return boolean
|
134 |
*/
|
135 |
public function getShowProductCount()
|
136 |
{
|
137 |
return Mage::getStoreConfig('codnitivecatalog/sidenav/product_count');
|
138 |
}
|
139 |
+
|
140 |
+
/**
|
141 |
+
* Get remove product count for categories by zero product number
|
142 |
+
*
|
143 |
+
* @return boolean
|
144 |
+
*/
|
145 |
+
public function removeZeroCount()
|
146 |
+
{
|
147 |
+
return Mage::getStoreConfig('codnitivecatalog/sidenav/remove_zero_count');
|
148 |
+
}
|
149 |
|
150 |
/**
|
151 |
* Check for extension enable option status
|
152 |
*
|
153 |
+
* @return boolean
|
154 |
*/
|
155 |
public function getThumbImageActive()
|
156 |
{
|
160 |
/**
|
161 |
* Get thumbnail size setting
|
162 |
*
|
163 |
+
* @return boolean
|
164 |
*/
|
165 |
public function getThumbSize()
|
166 |
{
|
app/code/community/Codnitive/Sidenav/etc/config.xml
CHANGED
@@ -25,7 +25,7 @@
|
|
25 |
<config>
|
26 |
<modules>
|
27 |
<Codnitive_Sidenav>
|
28 |
-
<version>1.
|
29 |
<title>Sidebar Navigation Menu Professional</title>
|
30 |
<link><![CDATA[http://www.codnitive.com/]]></link>
|
31 |
</Codnitive_Sidenav>
|
@@ -138,6 +138,7 @@
|
|
138 |
<max_depth>0</max_depth>
|
139 |
<collapsible>1</collapsible>
|
140 |
<product_count>0</product_count>
|
|
|
141 |
<thumbnail>0</thumbnail>
|
142 |
<thumb_size>0</thumb_size>
|
143 |
<thumb_width>14</thumb_width>
|
25 |
<config>
|
26 |
<modules>
|
27 |
<Codnitive_Sidenav>
|
28 |
+
<version>1.7.20</version>
|
29 |
<title>Sidebar Navigation Menu Professional</title>
|
30 |
<link><![CDATA[http://www.codnitive.com/]]></link>
|
31 |
</Codnitive_Sidenav>
|
138 |
<max_depth>0</max_depth>
|
139 |
<collapsible>1</collapsible>
|
140 |
<product_count>0</product_count>
|
141 |
+
<remove_zero_count>0</remove_zero_count>
|
142 |
<thumbnail>0</thumbnail>
|
143 |
<thumb_size>0</thumb_size>
|
144 |
<thumb_width>14</thumb_width>
|
app/code/community/Codnitive/Sidenav/etc/system.xml
CHANGED
@@ -53,7 +53,7 @@
|
|
53 |
<title translate="label">
|
54 |
<label>Title</label>
|
55 |
<frontend_type>text</frontend_type>
|
56 |
-
<sort_order>
|
57 |
<show_in_default>1</show_in_default>
|
58 |
<show_in_website>1</show_in_website>
|
59 |
<show_in_store>1</show_in_store>
|
@@ -62,16 +62,16 @@
|
|
62 |
<label>Remove Top Navigation Menu</label>
|
63 |
<frontend_type>select</frontend_type>
|
64 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
65 |
-
<sort_order>
|
66 |
<show_in_default>1</show_in_default>
|
67 |
<show_in_website>1</show_in_website>
|
68 |
<show_in_store>1</show_in_store>
|
69 |
</remove_top_nav>
|
70 |
-
<remove_layered_nav translate="label">
|
71 |
<label>Remove Layered Navigation Category</label>
|
72 |
<frontend_type>select</frontend_type>
|
73 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
74 |
-
<sort_order>
|
75 |
<show_in_default>1</show_in_default>
|
76 |
<show_in_website>1</show_in_website>
|
77 |
<show_in_store>1</show_in_store>
|
@@ -82,7 +82,7 @@
|
|
82 |
<frontend_type>select</frontend_type>
|
83 |
<!--<backend_model>sidenavconfig/ColumnOptions</backend_model>-->
|
84 |
<source_model>sidenavconfig/ColumnOptions</source_model>
|
85 |
-
<sort_order>
|
86 |
<show_in_default>1</show_in_default>
|
87 |
<show_in_website>1</show_in_website>
|
88 |
<show_in_store>1</show_in_store>
|
@@ -92,15 +92,15 @@
|
|
92 |
<frontend_type>select</frontend_type>
|
93 |
<!--<backend_model>sidenavconfig/ParentOptions</backend_model>-->
|
94 |
<source_model>sidenavconfig/ParentOptions</source_model>
|
95 |
-
<sort_order>
|
96 |
<show_in_default>1</show_in_default>
|
97 |
<show_in_website>1</show_in_website>
|
98 |
<show_in_store>1</show_in_store>
|
99 |
</parent>
|
100 |
-
<max_depth translate="label">
|
101 |
<label>Maximal Depth</label>
|
102 |
<frontend_type>text</frontend_type>
|
103 |
-
<sort_order>
|
104 |
<show_in_default>1</show_in_default>
|
105 |
<show_in_website>1</show_in_website>
|
106 |
<show_in_store>1</show_in_store>
|
@@ -110,7 +110,7 @@
|
|
110 |
<label>Collapsible</label>
|
111 |
<frontend_type>select</frontend_type>
|
112 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
113 |
-
<sort_order>
|
114 |
<show_in_default>1</show_in_default>
|
115 |
<show_in_website>1</show_in_website>
|
116 |
<show_in_store>1</show_in_store>
|
@@ -119,27 +119,40 @@
|
|
119 |
<label>Show Product Count</label>
|
120 |
<frontend_type>select</frontend_type>
|
121 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
122 |
-
<sort_order>
|
123 |
<show_in_default>1</show_in_default>
|
124 |
<show_in_website>1</show_in_website>
|
125 |
<show_in_store>1</show_in_store>
|
126 |
</product_count>
|
127 |
-
<
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
<label>Thumbnail Enabled</label>
|
129 |
<frontend_type>select</frontend_type>
|
130 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
131 |
-
<sort_order>
|
132 |
<show_in_default>1</show_in_default>
|
133 |
<show_in_website>1</show_in_website>
|
134 |
<show_in_store>1</show_in_store>
|
135 |
<comment>Shows thumbnail of menus.</comment>
|
136 |
</thumbnail>
|
137 |
-
<thumb_size translate="label">
|
138 |
<label>Thumbnail Size</label>
|
139 |
<frontend_type>select</frontend_type>
|
140 |
<!--<backend_model>sidenavconfig/ThumbSizeOptions</backend_model>-->
|
141 |
<source_model>sidenavconfig/ThumbSizeOptions</source_model>
|
142 |
-
<sort_order>
|
143 |
<show_in_default>1</show_in_default>
|
144 |
<show_in_website>1</show_in_website>
|
145 |
<show_in_store>1</show_in_store>
|
@@ -148,10 +161,10 @@
|
|
148 |
<thumbnail>1</thumbnail>
|
149 |
</depends>
|
150 |
</thumb_size>
|
151 |
-
<thumb_width translate="label">
|
152 |
<label>Width</label>
|
153 |
<frontend_type>text</frontend_type>
|
154 |
-
<sort_order>
|
155 |
<show_in_default>1</show_in_default>
|
156 |
<show_in_website>1</show_in_website>
|
157 |
<show_in_store>1</show_in_store>
|
@@ -161,10 +174,10 @@
|
|
161 |
<thumbnail>1</thumbnail>
|
162 |
</depends>
|
163 |
</thumb_width>
|
164 |
-
<thumb_height translate="label">
|
165 |
<label>Height</label>
|
166 |
<frontend_type>text</frontend_type>
|
167 |
-
<sort_order>
|
168 |
<show_in_default>1</show_in_default>
|
169 |
<show_in_website>1</show_in_website>
|
170 |
<show_in_store>1</show_in_store>
|
53 |
<title translate="label">
|
54 |
<label>Title</label>
|
55 |
<frontend_type>text</frontend_type>
|
56 |
+
<sort_order>15</sort_order>
|
57 |
<show_in_default>1</show_in_default>
|
58 |
<show_in_website>1</show_in_website>
|
59 |
<show_in_store>1</show_in_store>
|
62 |
<label>Remove Top Navigation Menu</label>
|
63 |
<frontend_type>select</frontend_type>
|
64 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
65 |
+
<sort_order>20</sort_order>
|
66 |
<show_in_default>1</show_in_default>
|
67 |
<show_in_website>1</show_in_website>
|
68 |
<show_in_store>1</show_in_store>
|
69 |
</remove_top_nav>
|
70 |
+
<remove_layered_nav translate="label comment">
|
71 |
<label>Remove Layered Navigation Category</label>
|
72 |
<frontend_type>select</frontend_type>
|
73 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
74 |
+
<sort_order>25</sort_order>
|
75 |
<show_in_default>1</show_in_default>
|
76 |
<show_in_website>1</show_in_website>
|
77 |
<show_in_store>1</show_in_store>
|
82 |
<frontend_type>select</frontend_type>
|
83 |
<!--<backend_model>sidenavconfig/ColumnOptions</backend_model>-->
|
84 |
<source_model>sidenavconfig/ColumnOptions</source_model>
|
85 |
+
<sort_order>30</sort_order>
|
86 |
<show_in_default>1</show_in_default>
|
87 |
<show_in_website>1</show_in_website>
|
88 |
<show_in_store>1</show_in_store>
|
92 |
<frontend_type>select</frontend_type>
|
93 |
<!--<backend_model>sidenavconfig/ParentOptions</backend_model>-->
|
94 |
<source_model>sidenavconfig/ParentOptions</source_model>
|
95 |
+
<sort_order>35</sort_order>
|
96 |
<show_in_default>1</show_in_default>
|
97 |
<show_in_website>1</show_in_website>
|
98 |
<show_in_store>1</show_in_store>
|
99 |
</parent>
|
100 |
+
<max_depth translate="label comment">
|
101 |
<label>Maximal Depth</label>
|
102 |
<frontend_type>text</frontend_type>
|
103 |
+
<sort_order>40</sort_order>
|
104 |
<show_in_default>1</show_in_default>
|
105 |
<show_in_website>1</show_in_website>
|
106 |
<show_in_store>1</show_in_store>
|
110 |
<label>Collapsible</label>
|
111 |
<frontend_type>select</frontend_type>
|
112 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
113 |
+
<sort_order>45</sort_order>
|
114 |
<show_in_default>1</show_in_default>
|
115 |
<show_in_website>1</show_in_website>
|
116 |
<show_in_store>1</show_in_store>
|
119 |
<label>Show Product Count</label>
|
120 |
<frontend_type>select</frontend_type>
|
121 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
122 |
+
<sort_order>50</sort_order>
|
123 |
<show_in_default>1</show_in_default>
|
124 |
<show_in_website>1</show_in_website>
|
125 |
<show_in_store>1</show_in_store>
|
126 |
</product_count>
|
127 |
+
<remove_zero_count translate="label comment">
|
128 |
+
<label>Remove Zero Product Count</label>
|
129 |
+
<frontend_type>select</frontend_type>
|
130 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
131 |
+
<sort_order>55</sort_order>
|
132 |
+
<show_in_default>1</show_in_default>
|
133 |
+
<show_in_website>1</show_in_website>
|
134 |
+
<show_in_store>1</show_in_store>
|
135 |
+
<comment>Removes product count for categories with zero product number.</comment>
|
136 |
+
<depends>
|
137 |
+
<product_count>1</product_count>
|
138 |
+
</depends>
|
139 |
+
</remove_zero_count>
|
140 |
+
<thumbnail translate="label comment">
|
141 |
<label>Thumbnail Enabled</label>
|
142 |
<frontend_type>select</frontend_type>
|
143 |
<source_model>adminhtml/system_config_source_yesno</source_model>
|
144 |
+
<sort_order>60</sort_order>
|
145 |
<show_in_default>1</show_in_default>
|
146 |
<show_in_website>1</show_in_website>
|
147 |
<show_in_store>1</show_in_store>
|
148 |
<comment>Shows thumbnail of menus.</comment>
|
149 |
</thumbnail>
|
150 |
+
<thumb_size translate="label comment">
|
151 |
<label>Thumbnail Size</label>
|
152 |
<frontend_type>select</frontend_type>
|
153 |
<!--<backend_model>sidenavconfig/ThumbSizeOptions</backend_model>-->
|
154 |
<source_model>sidenavconfig/ThumbSizeOptions</source_model>
|
155 |
+
<sort_order>65</sort_order>
|
156 |
<show_in_default>1</show_in_default>
|
157 |
<show_in_website>1</show_in_website>
|
158 |
<show_in_store>1</show_in_store>
|
161 |
<thumbnail>1</thumbnail>
|
162 |
</depends>
|
163 |
</thumb_size>
|
164 |
+
<thumb_width translate="label comment">
|
165 |
<label>Width</label>
|
166 |
<frontend_type>text</frontend_type>
|
167 |
+
<sort_order>70</sort_order>
|
168 |
<show_in_default>1</show_in_default>
|
169 |
<show_in_website>1</show_in_website>
|
170 |
<show_in_store>1</show_in_store>
|
174 |
<thumbnail>1</thumbnail>
|
175 |
</depends>
|
176 |
</thumb_width>
|
177 |
+
<thumb_height translate="label comment">
|
178 |
<label>Height</label>
|
179 |
<frontend_type>text</frontend_type>
|
180 |
+
<sort_order>75</sort_order>
|
181 |
<show_in_default>1</show_in_default>
|
182 |
<show_in_website>1</show_in_website>
|
183 |
<show_in_store>1</show_in_store>
|
app/code/local/Codnitive/Codall/etc/config.xml
CHANGED
@@ -25,7 +25,7 @@
|
|
25 |
<config>
|
26 |
<modules>
|
27 |
<Codnitive_Codall>
|
28 |
-
<version>1.0.
|
29 |
<title>CODNITIVE® Information</title>
|
30 |
<link><![CDATA[http://www.codnitive.com/]]></link>
|
31 |
</Codnitive_Codall>
|
25 |
<config>
|
26 |
<modules>
|
27 |
<Codnitive_Codall>
|
28 |
+
<version>1.0.15</version>
|
29 |
<title>CODNITIVE® Information</title>
|
30 |
<link><![CDATA[http://www.codnitive.com/]]></link>
|
31 |
</Codnitive_Codall>
|
app/code/local/Codnitive/Codall/etc/system.xml
CHANGED
@@ -25,7 +25,7 @@
|
|
25 |
<config>
|
26 |
<tabs>
|
27 |
<codall translate="label" module="codall">
|
28 |
-
<label>CODNITIVE
|
29 |
<sort_order>250</sort_order>
|
30 |
</codall>
|
31 |
</tabs>
|
25 |
<config>
|
26 |
<tabs>
|
27 |
<codall translate="label" module="codall">
|
28 |
+
<label>CODNITIVE</label>
|
29 |
<sort_order>250</sort_order>
|
30 |
</codall>
|
31 |
</tabs>
|
app/design/frontend/base/default/layout/sidenav.xml
CHANGED
@@ -45,12 +45,20 @@ Default layout
|
|
45 |
<action method="unsetChild" modules="codnitivecatalog/sidenav/" options="active,remove_top_nav" conditions="1,1" operation="0.1"><name>catalog.topnav</name></action>
|
46 |
</reference>
|
47 |
|
48 |
-
<!--
|
49 |
<reference name="left">
|
50 |
-
<block type="
|
|
|
|
|
|
|
|
|
51 |
</reference>
|
52 |
<reference name="right">
|
53 |
-
<block type="
|
|
|
|
|
|
|
|
|
54 |
</reference>
|
55 |
</default>
|
56 |
|
@@ -59,7 +67,11 @@ Customer account
|
|
59 |
-->
|
60 |
<customer_account translate="label">
|
61 |
<reference name="left">
|
62 |
-
<block type="
|
|
|
|
|
|
|
|
|
63 |
</reference>
|
64 |
</customer_account>
|
65 |
|
45 |
<action method="unsetChild" modules="codnitivecatalog/sidenav/" options="active,remove_top_nav" conditions="1,1" operation="0.1"><name>catalog.topnav</name></action>
|
46 |
</reference>
|
47 |
|
48 |
+
<!-- Codnitive_Sidenav -->
|
49 |
<reference name="left">
|
50 |
+
<block type="sidenav/navigation" name="sidenav.left" before="-">
|
51 |
+
<action method="setTemplate" modules="codnitivecatalog/sidenav/" options="active,column,column" conditions="1,left_col,both_col" operation="(0.1)+(0.2)">
|
52 |
+
<template>codnitive/sidenav/navigation.phtml</template>
|
53 |
+
</action>
|
54 |
+
</block>
|
55 |
</reference>
|
56 |
<reference name="right">
|
57 |
+
<block type="sidenav/navigation" name="sidenav.right" before="-">
|
58 |
+
<action method="setTemplate" modules="codnitivecatalog/sidenav/" options="active,column,column" conditions="1,right_col,both_col" operation="(0.1)+(0.2)">
|
59 |
+
<template>codnitive/sidenav/navigation.phtml</template>
|
60 |
+
</action>
|
61 |
+
</block>
|
62 |
</reference>
|
63 |
</default>
|
64 |
|
67 |
-->
|
68 |
<customer_account translate="label">
|
69 |
<reference name="left">
|
70 |
+
<block type="sidenav/navigation" name="sidenav.customer.account" after="customer_account_navigation">
|
71 |
+
<action method="setTemplate" modules="codnitivecatalog/sidenav/" options="active,column" conditions="1,right_col" operation="0.1">
|
72 |
+
<template>codnitive/sidenav/navigation.phtml</template>
|
73 |
+
</action>
|
74 |
+
</block>
|
75 |
</reference>
|
76 |
</customer_account>
|
77 |
|
app/design/frontend/base/default/template/codnitive/catalog/navigation/customer.phtml
DELETED
@@ -1,53 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Magento
|
4 |
-
*
|
5 |
-
* NOTICE OF LICENSE
|
6 |
-
*
|
7 |
-
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
-
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
-
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://opensource.org/licenses/afl-3.0.php
|
11 |
-
* If you did not receive a copy of the license and are unable to
|
12 |
-
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
-
*
|
15 |
-
* DISCLAIMER
|
16 |
-
*
|
17 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
-
* versions in the future. If you wish to customize Magento for your
|
19 |
-
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
-
*
|
21 |
-
* @category Codnitive
|
22 |
-
* @package Codnitive_Sidenav
|
23 |
-
* @author Hassan Barza <support@codnitive.com>
|
24 |
-
* @copyright Copyright (c) 2011 CODNITIVE Co. (http://www.codnitive.com)
|
25 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
26 |
-
*/
|
27 |
-
?>
|
28 |
-
<?php
|
29 |
-
/**
|
30 |
-
* Sidebar menu for store
|
31 |
-
*
|
32 |
-
* @see Codnitive_Sidenav_Block_Navigation
|
33 |
-
*/
|
34 |
-
?>
|
35 |
-
|
36 |
-
<?php
|
37 |
-
$sidebarnav = Mage::getBlockSingleton('sidenav/navigation');
|
38 |
-
$isActive = $sidebarnav->getCheckActive();
|
39 |
-
$categories = $sidebarnav->getCategoriesNavMenu();
|
40 |
-
$column = $sidebarnav->getColumn();
|
41 |
-
$title = $sidebarnav->getTitle(); ?>
|
42 |
-
<?php if ($isActive && $categories && $column == 'right_col'): ?>
|
43 |
-
<div id="sidebar-nav" class="sidebar-nav-customer">
|
44 |
-
<div class="block-title">
|
45 |
-
<strong><span><?php echo Mage::helper('sidenav')->__($title) ?></span></strong>
|
46 |
-
</div>
|
47 |
-
<div class="block-content">
|
48 |
-
<ul id="sidebar-nav-menu">
|
49 |
-
<?php echo $categories; ?>
|
50 |
-
</ul>
|
51 |
-
</div>
|
52 |
-
</div>
|
53 |
-
<?php endif ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/base/default/template/codnitive/catalog/navigation/right.phtml
DELETED
@@ -1,53 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Magento
|
4 |
-
*
|
5 |
-
* NOTICE OF LICENSE
|
6 |
-
*
|
7 |
-
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
-
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
-
* It is also available through the world-wide-web at this URL:
|
10 |
-
* http://opensource.org/licenses/afl-3.0.php
|
11 |
-
* If you did not receive a copy of the license and are unable to
|
12 |
-
* obtain it through the world-wide-web, please send an email
|
13 |
-
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
-
*
|
15 |
-
* DISCLAIMER
|
16 |
-
*
|
17 |
-
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
-
* versions in the future. If you wish to customize Magento for your
|
19 |
-
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
-
*
|
21 |
-
* @category Codnitive
|
22 |
-
* @package Codnitive_Sidenav
|
23 |
-
* @author Hassan Barza <support@codnitive.com>
|
24 |
-
* @copyright Copyright (c) 2011 CODNITIVE Co. (http://www.codnitive.com)
|
25 |
-
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
26 |
-
*/
|
27 |
-
?>
|
28 |
-
<?php
|
29 |
-
/**
|
30 |
-
* Sidebar menu for store
|
31 |
-
*
|
32 |
-
* @see Codnitive_Sidenav_Block_Navigation
|
33 |
-
*/
|
34 |
-
?>
|
35 |
-
|
36 |
-
<?php
|
37 |
-
$sidebarnav = Mage::getBlockSingleton('sidenav/navigation');
|
38 |
-
$isActive = $sidebarnav->getCheckActive();
|
39 |
-
$categories = $sidebarnav->getCategoriesNavMenu();
|
40 |
-
$column = $sidebarnav->getColumn();
|
41 |
-
$title = $sidebarnav->getTitle(); ?>
|
42 |
-
<?php if ($isActive && $categories && ($column == 'right_col' || $column == 'both_col')): ?>
|
43 |
-
<div id="sidebar-nav" class="sidebar-nav-right">
|
44 |
-
<div class="block-title">
|
45 |
-
<strong><span><?php echo Mage::helper('sidenav')->__($title) ?></span></strong>
|
46 |
-
</div>
|
47 |
-
<div class="block-content">
|
48 |
-
<ul id="sidebar-nav-menu">
|
49 |
-
<?php echo $categories; ?>
|
50 |
-
</ul>
|
51 |
-
</div>
|
52 |
-
</div>
|
53 |
-
<?php endif ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app/design/frontend/base/default/template/codnitive/{catalog/navigation/left.phtml → sidenav/navigation.phtml}
RENAMED
@@ -24,8 +24,7 @@
|
|
24 |
* @copyright Copyright (c) 2011 CODNITIVE Co. (http://www.codnitive.com)
|
25 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
26 |
*/
|
27 |
-
|
28 |
-
<?php
|
29 |
/**
|
30 |
* Sidebar menu for store
|
31 |
*
|
@@ -33,16 +32,10 @@
|
|
33 |
*/
|
34 |
?>
|
35 |
|
36 |
-
<?php
|
37 |
-
$sidebarnav = Mage::getBlockSingleton('sidenav/navigation');
|
38 |
-
$isActive = $sidebarnav->getCheckActive();
|
39 |
-
$categories = $sidebarnav->getCategoriesNavMenu();
|
40 |
-
$column = $sidebarnav->getColumn();
|
41 |
-
$title = $sidebarnav->getTitle(); ?>
|
42 |
-
<?php if ($isActive && $categories && ($column == 'left_col' || $column == 'both_col')): ?>
|
43 |
<div id="sidebar-nav" class="sidebar-nav-left">
|
44 |
<div class="block-title">
|
45 |
-
<strong><span><?php echo Mage::helper('sidenav')->__($
|
46 |
</div>
|
47 |
<div class="block-content">
|
48 |
<ul id="sidebar-nav-menu">
|
24 |
* @copyright Copyright (c) 2011 CODNITIVE Co. (http://www.codnitive.com)
|
25 |
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
26 |
*/
|
27 |
+
|
|
|
28 |
/**
|
29 |
* Sidebar menu for store
|
30 |
*
|
32 |
*/
|
33 |
?>
|
34 |
|
35 |
+
<?php if ($categories = $this->getCategoriesNavMenu()): ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
<div id="sidebar-nav" class="sidebar-nav-left">
|
37 |
<div class="block-title">
|
38 |
+
<strong><span><?php echo Mage::helper('sidenav')->__($this->getTitle()) ?></span></strong>
|
39 |
</div>
|
40 |
<div class="block-content">
|
41 |
<ul id="sidebar-nav-menu">
|
app/etc/modules/Codnitive_Codall.xml
CHANGED
@@ -27,7 +27,7 @@
|
|
27 |
<Codnitive_Codall>
|
28 |
<active>true</active>
|
29 |
<codePool>local</codePool>
|
30 |
-
<version>1.0.
|
31 |
</Codnitive_Codall>
|
32 |
</modules>
|
33 |
</config>
|
27 |
<Codnitive_Codall>
|
28 |
<active>true</active>
|
29 |
<codePool>local</codePool>
|
30 |
+
<version>1.0.15</version>
|
31 |
</Codnitive_Codall>
|
32 |
</modules>
|
33 |
</config>
|
app/etc/modules/Codnitive_Extifcon.xml
CHANGED
@@ -30,7 +30,7 @@
|
|
30 |
<depends>
|
31 |
<Mage_Core />
|
32 |
</depends>
|
33 |
-
<version>1.6.
|
34 |
</Codnitive_Extifcon>
|
35 |
</modules>
|
36 |
</config>
|
30 |
<depends>
|
31 |
<Mage_Core />
|
32 |
</depends>
|
33 |
+
<version>1.6.06</version>
|
34 |
</Codnitive_Extifcon>
|
35 |
</modules>
|
36 |
</config>
|
app/etc/modules/Codnitive_Sidenav.xml
CHANGED
@@ -32,7 +32,7 @@
|
|
32 |
<Mage_Page />
|
33 |
<Mage_Catalog />
|
34 |
</depends>
|
35 |
-
<version>1.
|
36 |
</Codnitive_Sidenav>
|
37 |
</modules>
|
38 |
</config>
|
32 |
<Mage_Page />
|
33 |
<Mage_Catalog />
|
34 |
</depends>
|
35 |
+
<version>1.7.20</version>
|
36 |
</Codnitive_Sidenav>
|
37 |
</modules>
|
38 |
</config>
|
app/locale/en_US/Codnitive_Sidenav.csv
CHANGED
@@ -20,7 +20,9 @@
|
|
20 |
"Parent Category","Parent Category"
|
21 |
"Remove Layered Navigation Category","Remove Layered Navigation Category"
|
22 |
"Remove Top Navigation Menu","Remove Top Navigation Menu"
|
|
|
23 |
"Removes browse by category from layered navigation.","Removes browse by category from layered navigation."
|
|
|
24 |
"Right Column","Right Column"
|
25 |
"Set to 0 or leave empty for unlimit depth.","Set to 0 or leave empty for unlimit depth."
|
26 |
"Shows thumbnail of menus.","Shows thumbnail of menus."
|
20 |
"Parent Category","Parent Category"
|
21 |
"Remove Layered Navigation Category","Remove Layered Navigation Category"
|
22 |
"Remove Top Navigation Menu","Remove Top Navigation Menu"
|
23 |
+
"Remove Zero Product Count","Remove Zero Product Count"
|
24 |
"Removes browse by category from layered navigation.","Removes browse by category from layered navigation."
|
25 |
+
"Removes product count for categories with zero product number.","Removes product count for categories with zero product number."
|
26 |
"Right Column","Right Column"
|
27 |
"Set to 0 or leave empty for unlimit depth.","Set to 0 or leave empty for unlimit depth."
|
28 |
"Shows thumbnail of menus.","Shows thumbnail of menus."
|
app/locale/fa_IR/Codnitive_Sidenav.csv
CHANGED
@@ -20,7 +20,9 @@
|
|
20 |
"Parent Category","ردهی منشا"
|
21 |
"Remove Layered Navigation Category","برداشتن ردهی ناوبری لایهای"
|
22 |
"Remove Top Navigation Menu","برداشتن منوی ناوبری بالایی"
|
|
|
23 |
"Removes browse by category from layered navigation.","جستجو توسط رده را از ناوبری لایهای برمی دارد."
|
|
|
24 |
"Right Column","ستون راست"
|
25 |
"Set to 0 or leave empty for unlimit depth.","برای عمق نهایی نا محدود 0(صفر) وارد کنید یا خالی بگذارید."
|
26 |
"Shows thumbnail of menus.","تصویر کوچک منوها را نمایش میدهد."
|
20 |
"Parent Category","ردهی منشا"
|
21 |
"Remove Layered Navigation Category","برداشتن ردهی ناوبری لایهای"
|
22 |
"Remove Top Navigation Menu","برداشتن منوی ناوبری بالایی"
|
23 |
+
"Remove Zero Product Count","برداشتن تعداد محصول صفر"
|
24 |
"Removes browse by category from layered navigation.","جستجو توسط رده را از ناوبری لایهای برمی دارد."
|
25 |
+
"Removes product count for categories with zero product number.","تعداد محصول را برای ردههایی با شمارهی محصول صفر برمی دارد."
|
26 |
"Right Column","ستون راست"
|
27 |
"Set to 0 or leave empty for unlimit depth.","برای عمق نهایی نا محدود 0(صفر) وارد کنید یا خالی بگذارید."
|
28 |
"Shows thumbnail of menus.","تصویر کوچک منوها را نمایش میدهد."
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Codnitive_Sidenav</name>
|
4 |
-
<version>1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/gpl-3.0.html">GNU General Public License, version 3 (GPLv3)</license>
|
7 |
<channel>community</channel>
|
@@ -11,9 +11,9 @@
|
|
11 |
With this navigation menu users can navigate to all site categories simply and fast.</description>
|
12 |
<notes>Please note: first test all modules in a test store then install theme on your original store. Always make backup of your store before installation.</notes>
|
13 |
<authors><author><name>Hassan Barza</name><user>hbarza</user><email>support@codnitive.com</email></author></authors>
|
14 |
-
<date>2012-
|
15 |
-
<time>
|
16 |
-
<contents><target name="mageetc"><dir name="modules"><file name="Codnitive_Codall.xml" hash="
|
17 |
<compatible/>
|
18 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
19 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Codnitive_Sidenav</name>
|
4 |
+
<version>1.7.20</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/gpl-3.0.html">GNU General Public License, version 3 (GPLv3)</license>
|
7 |
<channel>community</channel>
|
11 |
With this navigation menu users can navigate to all site categories simply and fast.</description>
|
12 |
<notes>Please note: first test all modules in a test store then install theme on your original store. Always make backup of your store before installation.</notes>
|
13 |
<authors><author><name>Hassan Barza</name><user>hbarza</user><email>support@codnitive.com</email></author></authors>
|
14 |
+
<date>2012-02-25</date>
|
15 |
+
<time>16:30:03</time>
|
16 |
+
<contents><target name="mageetc"><dir name="modules"><file name="Codnitive_Codall.xml" hash="f42a64255e041cd6a6a1a719a925db1e"/><file name="Codnitive_Sidenav.xml" hash="ff6f5e27fe051c0653a0c49376cc597e"/><file name="Codnitive_Extifcon.xml" hash="1afbbdd342c6f6cd91fc0fb9cc3585d0"/></dir></target><target name="magelocal"><dir name="Codnitive"><dir name="Codall"><dir><dir name="Block"><dir name="System"><dir name="Config"><dir name="Form"><dir name="Fieldset"><file name="Contact.php" hash="62e20a1f93c1b0394a5b1f1fefe09447"/><file name="ECD.php" hash="c6aafe57abdba2fcf6b7555c5f10345c"/><dir name="Extensions"><file name="List.php" hash="a337458b525e4b20feb68f898c3a6b8e"/></dir><file name="PCD.php" hash="bb824cfd2a340ba4b4f70b442b7316e8"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="db05202ae83bf9e4cc4454acb5fd8615"/></dir><dir name="etc"><file name="adminhtml.xml" hash="0bed954bf2a459b1f5d6a25050d770d7"/><file name="config.xml" hash="4bd4526ccde79a90326c405fb493e71b"/><file name="system.xml" hash="8d50f75589dea35bc799e47f1e4d05d0"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Codnitive_Codall.csv" hash="bea852e5e3c3f17c54d3c21e96115c68"/><file name="Codnitive_Sidenav.csv" hash="9a757037e4d2916b725e0a787c8357f4"/></dir><dir name="fa_IR"><file name="Codnitive_Codall.csv" hash="3691ccfe6c605575aace69417351e0f7"/><file name="Codnitive_Sidenav.csv" hash="44cb57d7edbb544fd6948f65873d2fd4"/></dir></target><target name="magecommunity"><dir name="Codnitive"><dir><dir name="Extifcon"><dir name="Helper"><file name="Data.php" hash="1999f1fe091a96f20c448f142e380f3e"/></dir><dir name="Model"><file name="Compiler.php" hash="174759534fc1954b31f794b33b52230d"/><dir name="Core"><file name="Layout.php" hash="2617a3a763768b30bd4c67c8243ce892"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="eba1716a8a274dcafd1bb646b94ef84e"/><file name="config.xml" hash="a0ed7144b432ffca0d773096ec0cfa00"/><file name="system.xml" hash="10f6bb263f7a75a4359c2fd0d1ea26ef"/></dir></dir><dir name="Sidenav"><dir name="Block"><file name="Navigation.php" hash="e28c13884371ab0e227780db315f79bd"/></dir><dir name="Helper"><file name="Category.php" hash="31f8b4c1f7391567a8396ea763d65f0f"/><file name="Data.php" hash="b9ea5a08afe28a117cb5c47ac6738896"/></dir><dir name="Model"><dir name="Config"><file name="ColumnOptions.php" hash="6196bfe8ca72a223ca468968a323c753"/><file name="ParentOptions.php" hash="fe28b0bcd0752bd11539256f85414a3b"/><file name="ThumbSizeOptions.php" hash="5a5930e3fe754fe3f1996f3344d4b4ab"/></dir><file name="Config.php" hash="0506fa5690d725aab2d6b1461bc7ee3a"/></dir><dir name="etc"><file name="adminhtml.xml" hash="fbd1336cfc8228ef03b56128f395d6c9"/><file name="config.xml" hash="f97e1ce5bbff38833d0cfc5d205aa779"/><file name="system.xml" hash="82089cd336921a5c90f89ce7e34557b3"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="sidenav.xml" hash="f008525b0f9e9c492b48425759af1a2b"/></dir><dir name="template"><dir name="codnitive"><dir name="sidenav"><file name="navigation.phtml" hash="aad6421b5221126179c232033d7ce2d9"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="default"><dir name="blank"><dir name="css"><file name="sidenav.css" hash="c9471f2d54b221cc6512d6ef02131ea0"/></dir></dir><dir name="default"><dir name="css"><file name="sidenav.css" hash="914b8153be9e5e68d50bd90afedd6a66"/><file name="sidenavcollapse.css" hash="70e2cec086adbc77ed5f87c2e20a6fc5"/></dir><dir name="images"><file name="bkg_block-sidebarnav-actions.gif" hash="da2970eac0a22c850b19ee3680475d51"/><file name="bkg_block-sidebarnav-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-sidebarnav-title.gif" hash="a269d8b84748540f9a4a4fb316d333ba"/><file name="arrows.gif" hash="9ea413987d4d17cc4de907a24dcbd268"/><file name="blue_arrows.gif" hash="151e6e7e3827265ed306ced85d165b38"/><file name="green_arrows.gif" hash="17c0766b23745095e6ee99067cedda19"/><file name="orange_arrows.gif" hash="36437d09042a820bd60952a44e287875"/></dir><dir name="js"><file name="sidenavcollapse.js" hash="c81b0b412fe684953e0936332d042915"/></dir></dir><dir name="f002"><dir name="css"><file name="sidenav.css" hash="f1ba5cfc14626f8736a6735d34757252"/></dir></dir><dir name="modern"><dir name="css"><file name="sidenav.css" hash="00475ebd9887cfa4cc9812229eaff061"/><file name="sidenavcollapse.css.bak" hash="4ba9b8e5af018e0ff64813589e820528"/></dir><dir name="images"><file name="bkg_block-sidebarnav-actions.gif" hash="1f29cb35ff7946056eecd61ad3dabdfd"/><file name="bkg_block-sidebarnav-title.gif" hash="1e7d3408f8fc509f4e6e2869557d3c1d"/><file name="arrows.gif" hash="17c0766b23745095e6ee99067cedda19"/></dir></dir></dir></dir></target></contents>
|
17 |
<compatible/>
|
18 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
19 |
</package>
|
skin/frontend/default/blank/css/sidenav.css
CHANGED
@@ -79,7 +79,8 @@ ul#sidebar-nav-menu > li.parent > ul.ul-thumb {
|
|
79 |
#sidebar-nav li.thumb {
|
80 |
list-style-type: none;
|
81 |
}
|
82 |
-
ul#sidebar-nav-menu > li.no-thumb
|
|
|
83 |
margin-left: 0 !important;
|
84 |
list-style-type: none;
|
85 |
}
|
79 |
#sidebar-nav li.thumb {
|
80 |
list-style-type: none;
|
81 |
}
|
82 |
+
ul#sidebar-nav-menu > li.no-thumb,
|
83 |
+
ul#sidebar-nav-menu > li.thumb {
|
84 |
margin-left: 0 !important;
|
85 |
list-style-type: none;
|
86 |
}
|
skin/frontend/default/default/css/sidenav.css
CHANGED
@@ -81,7 +81,8 @@ ul#sidebar-nav-menu > li.parent > ul.ul-thumb {
|
|
81 |
#sidebar-nav li.thumb {
|
82 |
list-style-type: none;
|
83 |
}
|
84 |
-
ul#sidebar-nav-menu > li.no-thumb
|
|
|
85 |
margin-left: 0 !important;
|
86 |
list-style-type: none;
|
87 |
}
|
81 |
#sidebar-nav li.thumb {
|
82 |
list-style-type: none;
|
83 |
}
|
84 |
+
ul#sidebar-nav-menu > li.no-thumb,
|
85 |
+
ul#sidebar-nav-menu > li.thumb {
|
86 |
margin-left: 0 !important;
|
87 |
list-style-type: none;
|
88 |
}
|
skin/frontend/default/f002/css/sidenav.css
CHANGED
@@ -97,7 +97,8 @@ ul#sidebar-nav-menu > li.parent > ul.ul-thumb {
|
|
97 |
#sidebar-nav li.thumb {
|
98 |
list-style-type: none;
|
99 |
}
|
100 |
-
ul#sidebar-nav-menu > li.no-thumb
|
|
|
101 |
margin-left: 0 !important;
|
102 |
list-style-type: none;
|
103 |
}
|
97 |
#sidebar-nav li.thumb {
|
98 |
list-style-type: none;
|
99 |
}
|
100 |
+
ul#sidebar-nav-menu > li.no-thumb,
|
101 |
+
ul#sidebar-nav-menu > li.thumb {
|
102 |
margin-left: 0 !important;
|
103 |
list-style-type: none;
|
104 |
}
|
skin/frontend/default/modern/css/sidenav.css
CHANGED
@@ -80,7 +80,8 @@ ul#sidebar-nav-menu > li.parent > ul.ul-thumb {
|
|
80 |
#sidebar-nav li.thumb {
|
81 |
list-style-type: none;
|
82 |
}
|
83 |
-
ul#sidebar-nav-menu > li.no-thumb
|
|
|
84 |
margin-left: 0 !important;
|
85 |
list-style-type: none;
|
86 |
}
|
80 |
#sidebar-nav li.thumb {
|
81 |
list-style-type: none;
|
82 |
}
|
83 |
+
ul#sidebar-nav-menu > li.no-thumb,
|
84 |
+
ul#sidebar-nav-menu > li.thumb {
|
85 |
margin-left: 0 !important;
|
86 |
list-style-type: none;
|
87 |
}
|