Codnitive_Sidenav - Version 1.8.11

Version Notes

Before using it in production, first check it in a test environment.
Also make sure you created a backup from your store files and database just before installing the extension.
If you enabled your store compiler, you must disable it before installation then re-compile and enable it again.
To view sidebar navigation correctly in frontend and access to configuration settings you must refresh Magento cache and re-login to admin panel.

Download this release

Release Info

Developer Hassan Barza
Extension Codnitive_Sidenav
Version 1.8.11
Comparing to
See all releases


Code changes from version 1.8.03 to 1.8.11

app/code/community/Codnitive/Sidenav/Block/Navigation.php CHANGED
@@ -64,6 +64,26 @@ class Codnitive_Sidenav_Block_Navigation extends Mage_Catalog_Block_Navigation
64
  $navigationMenu = $this->renderCategoriesMenuHtml(0);
65
  return $navigationMenu ? $navigationMenu : false;
66
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
67
 
68
  /**
69
  * Get catagories of current store
@@ -136,7 +156,9 @@ class Codnitive_Sidenav_Block_Navigation extends Mage_Catalog_Block_Navigation
136
  $childrenCount = $children->count();
137
  }
138
  else {
139
- $children = explode(',', $children);
 
 
140
  $childrenCount = count($children);
141
  }
142
  }
@@ -274,15 +296,15 @@ class Codnitive_Sidenav_Block_Navigation extends Mage_Catalog_Block_Navigation
274
  $html[] = $arrow;
275
 
276
  // add wrapper
277
- $aClass = '';
278
- $aStyle = '';
 
279
  if ($config->isCollapsible() || $config->isThumbImageActive()) {
280
  $wrapperMargin = ($config->isCollapsible() && $collapsibleIconPosition === 'left') ? 14 : 0;
281
  $extraMargin = !$config->isThumbImageActive() ? 0 : (!empty($thumbnail) && ($thumbPosition === 'left')) ? $thumbWidth + 3 : 0;
282
  $collWrapper = $wrapperMargin + $extraMargin;
283
 
284
  // makes parent category name clickable to open/close collapsible menus if option is enabled
285
- $onclick = '';
286
  $collapseName = '';
287
  if ($hasActiveChildren && $config->isCollapsible() && $config->expandByParentName()) {
288
  $onclick = ' onclick="Codnitive.expandMenu(this.parentNode);return false;"';
64
  $navigationMenu = $this->renderCategoriesMenuHtml(0);
65
  return $navigationMenu ? $navigationMenu : false;
66
  }
67
+
68
+ /**
69
+ * We set cache to null when product direct access option is enabled and customer
70
+ * is in product page to avoid wrong category tree showing with enabled caches
71
+ *
72
+ * Adds 1 extra second to page load
73
+ * Ultra version has caching and best performance
74
+ *
75
+ * @return null
76
+ */
77
+ public function getCacheLifetime()
78
+ {
79
+ $condition = (Mage::registry('current_product') !== null)
80
+ && ($this->getConfig()->activeProductCategoriesInDirectAccess());
81
+ if ($condition) {
82
+ return null;
83
+ }
84
+
85
+ return parent::getCacheLifetime();
86
+ }
87
 
88
  /**
89
  * Get catagories of current store
156
  $childrenCount = $children->count();
157
  }
158
  else {
159
+ if (is_string($children)) {
160
+ $children = explode(',', $children);
161
+ }
162
  $childrenCount = count($children);
163
  }
164
  }
296
  $html[] = $arrow;
297
 
298
  // add wrapper
299
+ $aClass = '';
300
+ $aStyle = '';
301
+ $onclick = '';
302
  if ($config->isCollapsible() || $config->isThumbImageActive()) {
303
  $wrapperMargin = ($config->isCollapsible() && $collapsibleIconPosition === 'left') ? 14 : 0;
304
  $extraMargin = !$config->isThumbImageActive() ? 0 : (!empty($thumbnail) && ($thumbPosition === 'left')) ? $thumbWidth + 3 : 0;
305
  $collWrapper = $wrapperMargin + $extraMargin;
306
 
307
  // makes parent category name clickable to open/close collapsible menus if option is enabled
 
308
  $collapseName = '';
309
  if ($hasActiveChildren && $config->isCollapsible() && $config->expandByParentName()) {
310
  $onclick = ' onclick="Codnitive.expandMenu(this.parentNode);return false;"';
app/code/community/Codnitive/Sidenav/Helper/Category.php CHANGED
@@ -46,7 +46,14 @@ class Codnitive_Sidenav_Helper_Category extends Mage_Catalog_Helper_Category
46
  return array();
47
  }
48
 
49
- $cacheKey = sprintf('codnitive-sidenav-%d-%d-%d-%d-%d', $parent, $recursionLevel, $sorted, $asCollection, $toLoad);
 
 
 
 
 
 
 
50
  if (isset($this->_storeCategories[$cacheKey])) {
51
  return $this->_storeCategories[$cacheKey];
52
  }
46
  return array();
47
  }
48
 
49
+ $id = 0;
50
+ if (Mage::registry('current_product')) {
51
+ $id = Mage::registry('current_product')->getId();
52
+ }
53
+ else if ($reqPath = Mage::app()->getRequest()) {
54
+ $id = $reqPath->getParam('id', $reqPath->getPathInfo());
55
+ }
56
+ $cacheKey = sprintf('codnitive-sidenav-%d-%d-%d-%d-%d-%d', $parent, $recursionLevel, $sorted, $asCollection, $toLoad, $id);
57
  if (isset($this->_storeCategories[$cacheKey])) {
58
  return $this->_storeCategories[$cacheKey];
59
  }
app/code/community/Codnitive/Sidenav/Model/Catalog/Category.php CHANGED
@@ -54,9 +54,7 @@ class Codnitive_Sidenav_Model_Catalog_Category extends Mage_Catalog_Model_Catego
54
  */
55
  public function getProductCategoriesInDirectAccess($category, $classes)
56
  {
57
- $reqPath = Mage::app()->getRequest();
58
- $prodId = $reqPath->getParam('id', $reqPath->getPathInfo());
59
- $prodModel = Mage::getModel('catalog/product')->load($prodId);
60
  $categories = $prodModel->getCategoryIds();
61
  $catArray = array();
62
  foreach ($categories as $catId) {
54
  */
55
  public function getProductCategoriesInDirectAccess($category, $classes)
56
  {
57
+ $prodModel = Mage::registry('current_product');
 
 
58
  $categories = $prodModel->getCategoryIds();
59
  $catArray = array();
60
  foreach ($categories as $catId) {
app/code/community/Codnitive/Sidenav/Model/Config.php CHANGED
@@ -35,7 +35,7 @@ class Codnitive_Sidenav_Model_Config /*extends Mage_Catalog_Model_Category*/
35
  const EXTENSION_NAMESPACE = 'sidenav';
36
 
37
  const EXTENSION_NAME = 'Sidebar Navigation Menu Professional';
38
- const EXTENSION_VERSION = '1.8.03';
39
  const EXTENSION_EDITION = '';
40
 
41
  public static function getNamespace()
35
  const EXTENSION_NAMESPACE = 'sidenav';
36
 
37
  const EXTENSION_NAME = 'Sidebar Navigation Menu Professional';
38
+ const EXTENSION_VERSION = '1.8.11';
39
  const EXTENSION_EDITION = '';
40
 
41
  public static function getNamespace()
app/code/community/Codnitive/Sidenav/etc/config.xml CHANGED
@@ -25,7 +25,7 @@
25
  <config>
26
  <modules>
27
  <Codnitive_Sidenav>
28
- <version>1.8.03</version>
29
  <title>Sidebar Navigation Menu Professional</title>
30
  <link><![CDATA[http://www.codnitive.com/]]>
31
  </link>
25
  <config>
26
  <modules>
27
  <Codnitive_Sidenav>
28
+ <version>1.8.11</version>
29
  <title>Sidebar Navigation Menu Professional</title>
30
  <link><![CDATA[http://www.codnitive.com/]]>
31
  </link>
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Codnitive_Sidenav</name>
4
- <version>1.8.03</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>
@@ -14,9 +14,9 @@ Also make sure you created a backup from your store files and database just befo
14
  If you enabled your store compiler, you must disable it before installation then re-compile and enable it again.&#xD;
15
  To view sidebar navigation correctly in frontend and access to configuration settings you must refresh Magento cache and re-login to admin panel.</notes>
16
  <authors><author><name>Hassan Barza</name><user>hbarza</user><email>support@codnitive.com</email></author></authors>
17
- <date>2013-07-15</date>
18
- <time>19:00:23</time>
19
- <contents><target name="mageetc"><dir name="modules"><file name="Codnitive_Codall.xml" hash="6b2f701358a66c64dc7e465c9c37b19d"/><file name="Codnitive_Sidenav.xml" hash="9ad9ddd42151498e4e4d01368f623e5e"/><file name="Codnitive_Extifcon.xml" hash="d0857d66ad78ee8505f3d51ec35689b6"/></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="8106827fe54d4c38b698ba0d7129eba7"/><file name="ECD.php" hash="54786d9d8d3741edd46be1967b4f784f"/><dir name="Extensions"><file name="List.php" hash="133eaf773b7b3d7546c7b0a85a9f05f7"/></dir><file name="PCD.php" hash="c7703442111ea9ede9c757f81a0cce1e"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="ed21011f3046ba8eb92bc9d168e816dc"/></dir><dir name="etc"><file name="adminhtml.xml" hash="92141ea9b2a4a3871dc3a441bdca5e67"/><file name="config.xml" hash="0c9f551dde5ccd82639fe0793a54bcce"/><file name="system.xml" hash="c73b95227f8db2bc096ea60dae5ced20"/></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Codnitive_Codall.csv" hash="b6ef3920c15d91d1af1f4c8a4cef82e9"/><file name="Codnitive_Sidenav.csv" hash="cf29ddc80aeb125c826001d6b7114afb"/><file name="Codnitive_Extifcon.csv" hash="0c7b87419fa86b293e84dfec66c31899"/></dir><dir name="fa_IR"><file name="Codnitive_Codall.csv" hash="486172901415e0278a5fd10c76b0c333"/><file name="Codnitive_Sidenav.csv" hash="7f39760c4fae22d23f4ccd85063e1795"/><file name="Codnitive_Extifcon.csv" hash="708e3b71cf2376104b0db4e4b985df33"/></dir></target><target name="magecommunity"><dir name="Codnitive"><dir name="Sidenav"><dir><dir name="Block"><file name="Navigation.php" hash="00767b9495ef963ada5af7173154e990"/></dir><dir name="Helper"><file name="Category.php" hash="09ed6265bb91bdfd6373a186f1975983"/><file name="Data.php" hash="010a4c9d8787b5f353c608d523d5f578"/></dir><dir name="Model"><dir name="Catalog"><file name="Category.php" hash="ea0d5a3d1a5282e3cd3c27ce82167f3f"/></dir><file name="Config.php" hash="5c22128fc75b789e7284676953f810c3"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Before.php" hash="17f8190184a0e5b4cafe3aa4fae7a28d"/><file name="Column.php" hash="25b66029ec4bd8b58412640a62d75212"/><file name="Float.php" hash="f9889a4b4e2975ebdcf52c5adc619808"/><file name="Icon.php" hash="2d240d65fbe72146882f3f2637e2e6a1"/><file name="Loadnocategory.php" hash="384e15ef19952e1f5b3a28ed54584665"/><file name="Parent.php" hash="63505ced360a4cbaf2a25c0cbb0c5e5f"/><file name="Thumbsize.php" hash="3978d5c5a8788f69acd0dadfeddba06f"/><file name="Title.php" hash="5112f20d78bb028ad9718ec0cedad66b"/></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="ff3978a7eb233c5a919b247908bbb8d2"/><file name="config.xml" hash="0151fc9a03b664c4fdc17ff656bd9e4b"/><file name="system.xml" hash="b33bf11c8a0d54103cf10872d52350ad"/></dir></dir></dir><dir name="Extifcon"><dir><dir name="Helper"><file name="Data.php" hash="149e557287d8cded7b0e4d9497db712c"/></dir><dir name="Model"><file name="Compiler.php" hash="0f12034c3944f9599778c6598acc4aa0"/><file name="Config.php" hash="7927c0efebb21b7161a9525dc388e130"/><dir name="Core"><file name="Layout.php" hash="704c3dfcfc7a75b4dc0a3ae4680a21e7"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="0777d101c55acacc2d0247c5327f1e55"/><file name="config.xml" hash="7c4d1441c2ab1c733955145c99fece72"/><file name="system.xml" hash="9dbc4ecb1241dbacf6a06a0646297766"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="codnitive"><file name="sidenav.xml" hash="1d75db4e2a62534712ed86ca69ab178b"/></dir></dir><dir name="template"><dir name="codnitive"><dir name="sidenav"><file name="navigation.phtml" hash="2b8f797b829d21eb9c83a23c34727e88"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="codnitive"><file name="sidenav.css" hash="d86b191e0fbd0cedeeaab45712512ba4"/></dir></dir><dir name="images"><dir name="codnitive"><dir name="sidenav"><file name="arrows.gif" hash="9ea413987d4d17cc4de907a24dcbd268"/><file name="arrows_blue.gif" hash="151e6e7e3827265ed306ced85d165b38"/><file name="arrows_green.gif" hash="17c0766b23745095e6ee99067cedda19"/><file name="arrows_right.gif" hash="b8466c83dab69daa1f3a1d444fbf46a3"/><file name="arrowsorange.gif" hash="36437d09042a820bd60952a44e287875"/><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="8c28b4c623674f740f6f71652b66c360"/><file name="codnitive_logo.png" hash="6f20d02ef1290605952825bbf942d09a"/><file name="home.png" hash="82fd37a919f29ba4e7585d3f6f603d23"/><file name="plus.gif" hash="a78809dc3d4568b018cd4a381194f8dd"/><file name="plus_gray.gif" hash="a5b5e05a98017ed9a9309622fff8d725"/><file name="plus_trans_small.gif" hash="b886e98d927f7082b000a94756bd6ca5"/></dir></dir></dir></dir></dir><dir name="default"><dir name="blank"><dir name="css"><dir name="codnitive"><file name="sidenav.css" hash="de4d3bf1c46d1f595243c24450fbf255"/></dir></dir><dir name="images"><dir name="codnitive"><dir name="sidenav"><file name="arrows.gif" hash="9ea413987d4d17cc4de907a24dcbd268"/><file name="codnitive_logo.png" hash="6f20d02ef1290605952825bbf942d09a"/><file name="home.png" hash="82fd37a919f29ba4e7585d3f6f603d23"/><file name="plus.gif" hash="a5b5e05a98017ed9a9309622fff8d725"/><file name="plus_trans_small.gif" hash="b886e98d927f7082b000a94756bd6ca5"/><file name="plus_white.gif" hash="a78809dc3d4568b018cd4a381194f8dd"/></dir></dir></dir></dir><dir name="default"><dir name="css"><dir name="codnitive"><file name="sidenav_pd.css" hash="6ca4f5953539ebaa2e99197c140c5c7b"/></dir></dir><dir name="images"><dir name="codnitive"><dir name="sidenav"><file name="arrows.gif" hash="9ea413987d4d17cc4de907a24dcbd268"/><file name="arrows_blue.gif" hash="151e6e7e3827265ed306ced85d165b38"/><file name="arrows_green.gif" hash="17c0766b23745095e6ee99067cedda19"/><file name="arrows_right.gif" hash="b8466c83dab69daa1f3a1d444fbf46a3"/><file name="arrowsorange.gif" hash="36437d09042a820bd60952a44e287875"/><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="8c28b4c623674f740f6f71652b66c360"/><file name="codnitive_logo.png" hash="6f20d02ef1290605952825bbf942d09a"/><file name="home.png" hash="82fd37a919f29ba4e7585d3f6f603d23"/><file name="plus.gif" hash="a78809dc3d4568b018cd4a381194f8dd"/><file name="plus_gray.gif" hash="a5b5e05a98017ed9a9309622fff8d725"/><file name="plus_trans_small.gif" hash="b886e98d927f7082b000a94756bd6ca5"/></dir></dir></dir></dir><dir name="f002"><dir name="css"><dir name="codnitive"><file name="sidenav.css" hash="843f9971a7e66ba1f8efc232a05526b4"/></dir></dir><dir name="images"><dir name="codnitive"><dir name="sidenav"><file name="arrows.gif" hash="9ea413987d4d17cc4de907a24dcbd268"/><file name="arrows_blue.gif" hash="151e6e7e3827265ed306ced85d165b38"/><file name="arrows_green.gif" hash="17c0766b23745095e6ee99067cedda19"/><file name="arrows_right.gif" hash="b8466c83dab69daa1f3a1d444fbf46a3"/><file name="arrowsorange.gif" hash="36437d09042a820bd60952a44e287875"/><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="8c28b4c623674f740f6f71652b66c360"/><file name="codnitive_logo.png" hash="6f20d02ef1290605952825bbf942d09a"/><file name="home.png" hash="82fd37a919f29ba4e7585d3f6f603d23"/><file name="plus.gif" hash="a78809dc3d4568b018cd4a381194f8dd"/><file name="plus_gray.gif" hash="a5b5e05a98017ed9a9309622fff8d725"/><file name="plus_trans_small.gif" hash="b886e98d927f7082b000a94756bd6ca5"/><file name="plus_white.gif" hash="a78809dc3d4568b018cd4a381194f8dd"/></dir></dir></dir></dir><dir name="modern"><dir name="css"><dir name="codnitive"><file name="sidenav.css" hash="bb3e94e6c2d824f8f99ae90c25265bae"/></dir></dir><dir name="images"><dir name="codnitive"><dir name="sidenav"><file name="arrows.gif" hash="9ea413987d4d17cc4de907a24dcbd268"/><file name="arrows_blue.gif" hash="151e6e7e3827265ed306ced85d165b38"/><file name="arrows_green.gif" hash="17c0766b23745095e6ee99067cedda19"/><file name="arrows_right.gif" hash="b8466c83dab69daa1f3a1d444fbf46a3"/><file name="arrowsorange.gif" hash="36437d09042a820bd60952a44e287875"/><file name="bkg_block-sidebarnav-actions.gif" hash="1f29cb35ff7946056eecd61ad3dabdfd"/><file name="bkg_block-sidebarnav-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-sidebarnav-title.gif" hash="db35f4c041cd65b37d108d2506b10aae"/><file name="codnitive_logo.png" hash="6f20d02ef1290605952825bbf942d09a"/><file name="home.png" hash="82fd37a919f29ba4e7585d3f6f603d23"/><file name="plus.gif" hash="a78809dc3d4568b018cd4a381194f8dd"/><file name="plus_gray.gif" hash="a5b5e05a98017ed9a9309622fff8d725"/><file name="plus_trans_small.gif" hash="b886e98d927f7082b000a94756bd6ca5"/></dir></dir></dir></dir></dir></dir></target></contents>
20
  <compatible/>
21
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
22
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Codnitive_Sidenav</name>
4
+ <version>1.8.11</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>
14
  If you enabled your store compiler, you must disable it before installation then re-compile and enable it again.&#xD;
15
  To view sidebar navigation correctly in frontend and access to configuration settings you must refresh Magento cache and re-login to admin panel.</notes>
16
  <authors><author><name>Hassan Barza</name><user>hbarza</user><email>support@codnitive.com</email></author></authors>
17
+ <date>2013-08-14</date>
18
+ <time>13:36:07</time>
19
+ <contents><target name="mageetc"><dir name="modules"><file name="Codnitive_Codall.xml" hash="6b2f701358a66c64dc7e465c9c37b19d"/><file name="Codnitive_Sidenav.xml" hash="9ad9ddd42151498e4e4d01368f623e5e"/><file name="Codnitive_Extifcon.xml" hash="d0857d66ad78ee8505f3d51ec35689b6"/></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="8106827fe54d4c38b698ba0d7129eba7"/><file name="ECD.php" hash="54786d9d8d3741edd46be1967b4f784f"/><dir name="Extensions"><file name="List.php" hash="133eaf773b7b3d7546c7b0a85a9f05f7"/></dir><file name="PCD.php" hash="c7703442111ea9ede9c757f81a0cce1e"/></dir></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="ed21011f3046ba8eb92bc9d168e816dc"/></dir><dir name="etc"><file name="adminhtml.xml" hash="92141ea9b2a4a3871dc3a441bdca5e67"/><file name="config.xml" hash="0c9f551dde5ccd82639fe0793a54bcce"/><file name="system.xml" hash="c73b95227f8db2bc096ea60dae5ced20"/></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="css"><dir name="codnitive"><file name="sidenav_pd.css" hash=""/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Codnitive_Codall.csv" hash="b6ef3920c15d91d1af1f4c8a4cef82e9"/><file name="Codnitive_Sidenav.csv" hash="cf29ddc80aeb125c826001d6b7114afb"/><file name="Codnitive_Extifcon.csv" hash="0c7b87419fa86b293e84dfec66c31899"/></dir><dir name="fa_IR"><file name="Codnitive_Codall.csv" hash="486172901415e0278a5fd10c76b0c333"/><file name="Codnitive_Sidenav.csv" hash="7f39760c4fae22d23f4ccd85063e1795"/><file name="Codnitive_Extifcon.csv" hash="708e3b71cf2376104b0db4e4b985df33"/></dir></target><target name="magecommunity"><dir name="Codnitive"><dir name="Sidenav"><dir><dir name="Block"><file name="Navigation.php" hash="42bdf09273df01ca18fb4b538c513cdb"/></dir><dir name="Helper"><file name="Category.php" hash="23d5f3313583d7c0fc87988f25c93b3c"/><file name="Data.php" hash="010a4c9d8787b5f353c608d523d5f578"/></dir><dir name="Model"><dir name="Catalog"><file name="Category.php" hash="72e982ab3231dbd8b16746a13e2c3e98"/></dir><file name="Config.php" hash="201c56a0bf0b6b42f5481288456a09e9"/><dir name="System"><dir name="Config"><dir name="Source"><file name="Before.php" hash="17f8190184a0e5b4cafe3aa4fae7a28d"/><file name="Column.php" hash="25b66029ec4bd8b58412640a62d75212"/><file name="Float.php" hash="f9889a4b4e2975ebdcf52c5adc619808"/><file name="Icon.php" hash="2d240d65fbe72146882f3f2637e2e6a1"/><file name="Loadnocategory.php" hash="384e15ef19952e1f5b3a28ed54584665"/><file name="Parent.php" hash="63505ced360a4cbaf2a25c0cbb0c5e5f"/><file name="Thumbsize.php" hash="3978d5c5a8788f69acd0dadfeddba06f"/><file name="Title.php" hash="5112f20d78bb028ad9718ec0cedad66b"/></dir></dir></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="ff3978a7eb233c5a919b247908bbb8d2"/><file name="config.xml" hash="17b82f8616c30accba972944f78bb8d7"/><file name="system.xml" hash="b33bf11c8a0d54103cf10872d52350ad"/></dir></dir></dir><dir name="Extifcon"><dir><dir name="Helper"><file name="Data.php" hash="149e557287d8cded7b0e4d9497db712c"/></dir><dir name="Model"><file name="Compiler.php" hash="0f12034c3944f9599778c6598acc4aa0"/><file name="Config.php" hash="7927c0efebb21b7161a9525dc388e130"/><dir name="Core"><file name="Layout.php" hash="704c3dfcfc7a75b4dc0a3ae4680a21e7"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="0777d101c55acacc2d0247c5327f1e55"/><file name="config.xml" hash="7c4d1441c2ab1c733955145c99fece72"/><file name="system.xml" hash="9dbc4ecb1241dbacf6a06a0646297766"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="codnitive"><file name="sidenav.xml" hash="1d75db4e2a62534712ed86ca69ab178b"/></dir></dir><dir name="template"><dir name="codnitive"><dir name="sidenav"><file name="navigation.phtml" hash="2b8f797b829d21eb9c83a23c34727e88"/></dir></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="codnitive"><file name="sidenav.css" hash="d86b191e0fbd0cedeeaab45712512ba4"/></dir></dir><dir name="images"><dir name="codnitive"><dir name="sidenav"><file name="arrows.gif" hash="9ea413987d4d17cc4de907a24dcbd268"/><file name="arrows_blue.gif" hash="151e6e7e3827265ed306ced85d165b38"/><file name="arrows_green.gif" hash="17c0766b23745095e6ee99067cedda19"/><file name="arrows_right.gif" hash="b8466c83dab69daa1f3a1d444fbf46a3"/><file name="arrowsorange.gif" hash="36437d09042a820bd60952a44e287875"/><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="8c28b4c623674f740f6f71652b66c360"/><file name="codnitive_logo.png" hash="6f20d02ef1290605952825bbf942d09a"/><file name="home.png" hash="82fd37a919f29ba4e7585d3f6f603d23"/><file name="plus.gif" hash="a78809dc3d4568b018cd4a381194f8dd"/><file name="plus_gray.gif" hash="a5b5e05a98017ed9a9309622fff8d725"/><file name="plus_trans_small.gif" hash="b886e98d927f7082b000a94756bd6ca5"/></dir></dir></dir></dir></dir><dir name="default"><dir name="blank"><dir name="css"><dir name="codnitive"><file name="sidenav.css" hash="de4d3bf1c46d1f595243c24450fbf255"/></dir></dir><dir name="images"><dir name="codnitive"><dir name="sidenav"><file name="arrows.gif" hash="9ea413987d4d17cc4de907a24dcbd268"/><file name="codnitive_logo.png" hash="6f20d02ef1290605952825bbf942d09a"/><file name="home.png" hash="82fd37a919f29ba4e7585d3f6f603d23"/><file name="plus.gif" hash="a5b5e05a98017ed9a9309622fff8d725"/><file name="plus_trans_small.gif" hash="b886e98d927f7082b000a94756bd6ca5"/><file name="plus_white.gif" hash="a78809dc3d4568b018cd4a381194f8dd"/></dir></dir></dir></dir><dir name="default"><dir name="images"><dir name="codnitive"><dir name="sidenav"><file name="arrows.gif" hash="9ea413987d4d17cc4de907a24dcbd268"/><file name="arrows_blue.gif" hash="151e6e7e3827265ed306ced85d165b38"/><file name="arrows_green.gif" hash="17c0766b23745095e6ee99067cedda19"/><file name="arrows_right.gif" hash="b8466c83dab69daa1f3a1d444fbf46a3"/><file name="arrowsorange.gif" hash="36437d09042a820bd60952a44e287875"/><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="8c28b4c623674f740f6f71652b66c360"/><file name="codnitive_logo.png" hash="6f20d02ef1290605952825bbf942d09a"/><file name="home.png" hash="82fd37a919f29ba4e7585d3f6f603d23"/><file name="plus.gif" hash="a78809dc3d4568b018cd4a381194f8dd"/><file name="plus_gray.gif" hash="a5b5e05a98017ed9a9309622fff8d725"/><file name="plus_trans_small.gif" hash="b886e98d927f7082b000a94756bd6ca5"/></dir></dir></dir></dir><dir name="f002"><dir name="css"><dir name="codnitive"><file name="sidenav.css" hash="843f9971a7e66ba1f8efc232a05526b4"/></dir></dir><dir name="images"><dir name="codnitive"><dir name="sidenav"><file name="arrows.gif" hash="9ea413987d4d17cc4de907a24dcbd268"/><file name="arrows_blue.gif" hash="151e6e7e3827265ed306ced85d165b38"/><file name="arrows_green.gif" hash="17c0766b23745095e6ee99067cedda19"/><file name="arrows_right.gif" hash="b8466c83dab69daa1f3a1d444fbf46a3"/><file name="arrowsorange.gif" hash="36437d09042a820bd60952a44e287875"/><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="8c28b4c623674f740f6f71652b66c360"/><file name="codnitive_logo.png" hash="6f20d02ef1290605952825bbf942d09a"/><file name="home.png" hash="82fd37a919f29ba4e7585d3f6f603d23"/><file name="plus.gif" hash="a78809dc3d4568b018cd4a381194f8dd"/><file name="plus_gray.gif" hash="a5b5e05a98017ed9a9309622fff8d725"/><file name="plus_trans_small.gif" hash="b886e98d927f7082b000a94756bd6ca5"/><file name="plus_white.gif" hash="a78809dc3d4568b018cd4a381194f8dd"/></dir></dir></dir></dir><dir name="modern"><dir name="css"><dir name="codnitive"><file name="sidenav.css" hash="bb3e94e6c2d824f8f99ae90c25265bae"/></dir></dir><dir name="images"><dir name="codnitive"><dir name="sidenav"><file name="arrows.gif" hash="9ea413987d4d17cc4de907a24dcbd268"/><file name="arrows_blue.gif" hash="151e6e7e3827265ed306ced85d165b38"/><file name="arrows_green.gif" hash="17c0766b23745095e6ee99067cedda19"/><file name="arrows_right.gif" hash="b8466c83dab69daa1f3a1d444fbf46a3"/><file name="arrowsorange.gif" hash="36437d09042a820bd60952a44e287875"/><file name="bkg_block-sidebarnav-actions.gif" hash="1f29cb35ff7946056eecd61ad3dabdfd"/><file name="bkg_block-sidebarnav-layered-dd.gif" hash="6ae6f8184e87de496fb74eeec65737c9"/><file name="bkg_block-sidebarnav-title.gif" hash="db35f4c041cd65b37d108d2506b10aae"/><file name="codnitive_logo.png" hash="6f20d02ef1290605952825bbf942d09a"/><file name="home.png" hash="82fd37a919f29ba4e7585d3f6f603d23"/><file name="plus.gif" hash="a78809dc3d4568b018cd4a381194f8dd"/><file name="plus_gray.gif" hash="a5b5e05a98017ed9a9309622fff8d725"/><file name="plus_trans_small.gif" hash="b886e98d927f7082b000a94756bd6ca5"/></dir></dir></dir></dir></dir></dir></target></contents>
20
  <compatible/>
21
  <dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
22
  </package>
skin/frontend/default/default/css/codnitive/sidenav_pd.css DELETED
@@ -1,160 +0,0 @@
1
- /**
2
- * CODNITIVE
3
- *
4
- * NOTICE OF LICENSE
5
- *
6
- * This source file is subject to the Open Software License (OSL 3.0)
7
- * that is bundled with this package in the file LICENSE.txt.
8
- * It is also available through the world-wide-web at this URL:
9
- * http://opensource.org/licenses/osl-3.0.php
10
- *
11
- * DISCLAIMER
12
- *
13
- * Do not edit or add to this file if you wish to upgrade to newer
14
- * versions in the future.
15
- *
16
- * @category Codnitive
17
- * @package Codnitive_Sidenav
18
- * @author Hassan Barza <support@codnitive.com>
19
- * @copyright Copyright (c) 2011 CODNITIVE Co. (http://www.codnitive.com)
20
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
21
- */
22
-
23
- /* Sidebar Navigation ==================================================================== */
24
- #sidebar-nav {
25
- margin-bottom: 15px;
26
- border: 0 none;
27
- position: relative;
28
- }
29
- #sidebar-nav .block-title {
30
- border: 0 none !important;
31
- height: 18px !important;
32
- background: url('../../images/codnitive/sidenav/bkg_block-sidebarnav-title.gif') 0 0 repeat-x;
33
- padding: 4px 9px 2px;
34
- }
35
- #sidebar-nav .block-title strong {
36
- font: bold 13px/16px Arial, Helvetica, sans-serif;
37
- text-transform: uppercase;
38
- color: #FFF;
39
- }
40
- #sidebar-nav .block-content {
41
- background: #DEE5E8 url('../../images/codnitive/sidenav/bkg_block-sidebarnav-actions.gif') 0 0 repeat-x;
42
- padding: 6px 9px;
43
- border: 1px solid #C4C1BC;
44
- overflow: auto;
45
- }
46
- #sidebar-nav .block-content a {
47
- color: #0D004C;
48
- line-height: 1.7;
49
- }
50
- #sidebar-nav-menu > li {
51
- background: url('../../images/codnitive/sidenav/bkg_block-sidebarnav-layered-dd.gif') 0 100% repeat-x;
52
- list-style: inside disc;
53
- font-weight: bold;
54
- padding: 8px 0;
55
- }
56
- #sidebar-nav-menu > li.last {
57
- background: none;
58
- margin-bottom: 5px;
59
- }
60
- #sidebar-nav-menu li ul {
61
- font-weight: normal;
62
- }
63
- #sidebar-nav li.active,
64
- #sidebar-nav li.active > a,
65
- #sidebar-nav li.active > .collapsible-wrapper > a {
66
- color: #D15E00;
67
- }
68
- #sidebar-nav ul.ul-thumb {
69
- padding-left: 0;
70
- }
71
- #sidebar-nav-menu > li.parent > ul.ul-thumb {
72
- padding-left: 10px;
73
- }
74
- #sidebar-nav li.thumb {
75
- list-style-type: none;
76
- }
77
- #sidebar-nav-menu > li.no-thumb,
78
- #sidebar-nav-menu > li.thumb {
79
- margin-left: 0 !important;
80
- list-style-type: none;
81
- }
82
- #sidebar-nav img {
83
- border: 0 none !important;
84
- outline: 0 none !important;
85
- }
86
- #sidebar-nav span.product-count {
87
- color: #000;
88
- }
89
- #sidebar-nav .home {
90
- list-style: none !important;
91
- }
92
- #sidebar-nav .home a {
93
- display:inline-block;
94
- padding-left:20px;
95
- background:url('../../images/codnitive/sidenav/home.png') left top no-repeat;
96
- min-height:16px;
97
- }
98
- #sidebar-nav .support-logo-wrapper {
99
- margin-top:10px;
100
- }
101
- #sidebar-nav .support_logo {
102
- font-size: 9px;
103
- float: right;
104
- right: 5px;
105
- bottom: 5px;
106
- text-decoration: none;
107
- }
108
- #sidebar-nav .support_logo img {
109
- max-width: 65px;
110
- }
111
-
112
- /* Collapsible Design ==================================================================== */
113
- #sidebar-nav li.thumb .thumb-img-left {
114
- float: left;
115
- margin: 1px 3px 0 0;
116
- }
117
- #sidebar-nav li.thumb .thumb-img-right {
118
- float: right;
119
- margin: 1px 3px 0;
120
- }
121
- #sidebar-nav-menu .arrow-left,
122
- #sidebar-nav-menu .arrow-right,
123
- #sidebar-nav-menu .plus-left,
124
- #sidebar-nav-menu .plus-right {
125
- float: left;
126
- background: url('../../images/codnitive/sidenav/arrows.gif') left center no-repeat;
127
- display: block;
128
- margin-top: 2px;
129
- margin: 1px 3px 0;
130
- cursor:pointer;
131
- }
132
- #sidebar-nav-menu .plus-left,
133
- #sidebar-nav-menu .plus-right
134
- {
135
- background-image: url('../../images/codnitive/sidenav/plus.gif');
136
- }
137
- #sidebar-nav-menu .arrow-right,
138
- #sidebar-nav-menu .plus-right {
139
- float:right;
140
- display:inline !important;
141
- }
142
- #sidebar-nav-menu li ul[expanded="0"] {
143
- display: none;
144
- }
145
- #sidebar-nav li.active > ul {
146
- display: block;
147
- }
148
- #sidebar-nav li.active > .arrow-left,
149
- #sidebar-nav li.active > .arrow-right,
150
- #sidebar-nav li.active > .plus-left,
151
- #sidebar-nav li.active > .plus-right {
152
- display: block;
153
- background-position: right center;
154
- }
155
- #sidebar-nav-menu > li.collapsible {
156
- list-style: none !important;
157
- }
158
- #sidebar-nav .collapse-name {
159
- cursor:pointer;
160
- }