ntoklo_recommendations - Version 1.0.4

Version Notes

Conversion optimisation

Download this release

Release Info

Developer nToklo
Extension ntoklo_recommendations
Version 1.0.4
Comparing to
See all releases


Code changes from version 1.0.3 to 1.0.4

app/code/community/Ntoklo/Recommendations/Block/Adminhtml/Widget/Date/Helper.php CHANGED
@@ -46,5 +46,4 @@ class Ntoklo_Recommendations_Block_Adminhtml_Widget_Date_Helper extends Mage_Adm
46
  $date->setForm($this->_element->getForm());
47
  return $date->getElementHtml();
48
  }
49
- }
50
-
46
  $date->setForm($this->_element->getForm());
47
  return $date->getElementHtml();
48
  }
49
+ }
 
app/code/community/Ntoklo/Recommendations/Helper/Data.php CHANGED
@@ -39,11 +39,12 @@ class Ntoklo_Recommendations_Helper_Data extends Mage_Core_Helper_Abstract {
39
  /**
40
  * Page types as defined in nToklo API
41
  */
42
- const PAGE_CATEGORY_PRODUCT = 'product';
43
- const PAGE_CATEGORY_CONFIRMATION = 'confirmation';
44
- const PAGE_CATEGORY_RATE = 'rate';
45
- const PAGE_CATEGORY_REVIEW = 'review';
46
- const PAGE_CATEGORY_WISHLIST = 'wishlist';
 
47
 
48
  /**
49
  * Page types other than defined in nToklo API
@@ -272,7 +273,15 @@ class Ntoklo_Recommendations_Helper_Data extends Mage_Core_Helper_Abstract {
272
  ));
273
 
274
  if ($userId = $this->getNtokloUserId()) {
275
- $object->setProperties(array('user_id' => $userId));
 
 
 
 
 
 
 
 
276
  }
277
 
278
  // Name
@@ -569,18 +578,30 @@ class Ntoklo_Recommendations_Helper_Data extends Mage_Core_Helper_Abstract {
569
  public function getNtokloUserId() {
570
  /** @var Mage_Customer_Model_Customer $customer */
571
  $customer = Mage::helper('customer')->getCustomer();
572
- if ($customer->getId()) {
 
573
  return $customer->getId();
574
  }
575
-
576
- /** @var Mage_Log_Model_Visitor $visitor */
 
 
 
 
 
 
 
 
 
 
577
  $visitor = Mage::getSingleton('log/visitor');
578
- if ($visitor->getVisitorId()) {
 
579
  return $visitor->getVisitorId();
580
  }
581
 
582
  return false;
583
- }
584
 
585
  private function _setConfig($path, $value) {
586
  Mage::getModel('core/config')->saveConfig($path, $value );
39
  /**
40
  * Page types as defined in nToklo API
41
  */
42
+ const PAGE_CATEGORY_CONVERSION_FUNNEL = 'conversion_funnel';
43
+ const PAGE_CATEGORY_PRODUCT = 'product';
44
+ const PAGE_CATEGORY_CONFIRMATION = 'confirmation';
45
+ const PAGE_CATEGORY_RATE = 'rate';
46
+ const PAGE_CATEGORY_REVIEW = 'review';
47
+ const PAGE_CATEGORY_WISHLIST = 'wishlist';
48
 
49
  /**
50
  * Page types other than defined in nToklo API
273
  ));
274
 
275
  if ($userId = $this->getNtokloUserId()) {
276
+ $visitorId = $this->getNtokloSessionId();
277
+ $object->setProperties(array(
278
+ 'user_id' => $userId,
279
+ 'visitor_id' => $visitorId
280
+ ));
281
+ }elseif($visitorId = $this->getNtokloSessionId()){
282
+ $object->setProperties(array(
283
+ 'visitor_id' => $visitorId
284
+ ));
285
  }
286
 
287
  // Name
578
  public function getNtokloUserId() {
579
  /** @var Mage_Customer_Model_Customer $customer */
580
  $customer = Mage::helper('customer')->getCustomer();
581
+
582
+ if ($customer->getId()) {
583
  return $customer->getId();
584
  }
585
+
586
+ return false;
587
+ }
588
+
589
+ /**
590
+ * When guest checkout is turn off get session/vistor id merge with user id
591
+ *
592
+ * @return string
593
+ */
594
+
595
+ public function getNtokloSessionId(){
596
+ /** @var Mage_Log_Model_Visitor $visitor */
597
  $visitor = Mage::getSingleton('log/visitor');
598
+
599
+ if ($visitor->getVisitorId()) {
600
  return $visitor->getVisitorId();
601
  }
602
 
603
  return false;
604
+ }
605
 
606
  private function _setConfig($path, $value) {
607
  Mage::getModel('core/config')->saveConfig($path, $value );
app/code/community/Ntoklo/Recommendations/etc/config.xml CHANGED
@@ -20,7 +20,7 @@
20
  <config>
21
  <modules>
22
  <Ntoklo_Recommendations>
23
- <version>1.0.3</version>
24
  </Ntoklo_Recommendations>
25
  </modules>
26
  <global>
20
  <config>
21
  <modules>
22
  <Ntoklo_Recommendations>
23
+ <version>1.0.4</version>
24
  </Ntoklo_Recommendations>
25
  </modules>
26
  <global>
app/code/community/Ntoklo/Recommendations/sql/ntoklo_setup/{mysql4-install-1.0.3.php → mysql4-install-1.0.4.php} RENAMED
File without changes
app/design/frontend/base/default/template/ntoklo/recommendations/widget/chart_horisontal.phtml DELETED
@@ -1,54 +0,0 @@
1
- <?php
2
- /**
3
- * nToklo
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- *
12
- * @category Ntoklo
13
- * @package Ntoklo_Recommendations
14
- * @copyright Copyright (c) 2013 nToklo (http://ntoklo.com)
15
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
16
- * @author nToklo
17
- */
18
- ?>
19
-
20
- <?php if (($_products = $this->getItems()) && count($_products)): ?>
21
- <!-- nToklo Chart -->
22
- <div class="widget-ntoklo-container clearfix" style="clear:both">
23
- <?php $_columnCount = $this->getColumnCount(); ?>
24
- <div class="nt_wrapper nt_grid nt_orange nt_<?php echo $_columnCount ?>_column">
25
- <p class="nt_header"><?php echo $this->getHeader() ?></p>
26
- <div class="nt_widget clearfix">
27
- <?php $i=0; foreach ($_products as $_product): ?>
28
- <?php if ($i++%$_columnCount==0): ?>
29
- <div class="nt_row clearfix">
30
- <?php endif ?>
31
- <div class="nt_item_wrap" style="width:<?php echo (100 / $_columnCount) ?>%">
32
- <div class="nt_img_wrap">
33
- <a href="<?php echo $_product->getProductUrl() ?>" class="ntoklo_conversion"><img src="<?php echo $this->helper('catalog/image')->init($_product, 'thumbnail')->resize(100) ?>" alt="<?php echo $this->htmlEscape($_product->getName()) ?>"></a>
34
- </div>
35
- <span class="nt_product_title"><?php echo $this->htmlEscape($_product->getName()) ?></span>
36
- <span class="nt_product_price"><?php echo Mage::helper('core')->currency($_product->getPrice()); ?></span>
37
- <a href="<?php echo $_product->getProductUrl() ?>" class="nt_btn">
38
- <svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="10.853px" height="11.229px" viewBox="0 0 10.853 11.229" enable-background="new 0 0 10.853 11.229" xml:space="preserve">
39
- <g>
40
- <path fill="#fff" d="M8.825,6.164l-4.367,4.361c-0.154,0.154-0.375,0.248-0.603,0.248c-0.229,0-0.449-0.094-0.604-0.248l-0.509-0.502C2.589,9.862,2.495,9.64,2.495,9.413c0-0.229,0.094-0.449,0.248-0.604l3.255-3.255L2.743,2.305c-0.154-0.16-0.248-0.382-0.248-0.609s0.094-0.449,0.248-0.603L3.252,0.59C3.406,0.43,3.627,0.336,3.855,0.336c0.228,0,0.448,0.094,0.603,0.254l4.367,4.361c0.154,0.153,0.248,0.375,0.248,0.603S8.979,6.003,8.825,6.164z"/>
41
- </g>
42
- </svg>
43
- </a>
44
- </div>
45
- <?php if ($i%$_columnCount==0 || $i==count($_products)): ?>
46
- </div>
47
- <?php endif ?>
48
- <?php endforeach; ?>
49
- </div>
50
- <div class="nt_logo"></div>
51
- </div>
52
- </div>
53
- <!-- //END nToklo Chart -->
54
- <?php endif; ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/base/default/template/ntoklo/recommendations/widget/chart_review_short.phtml DELETED
@@ -1,31 +0,0 @@
1
- <?php
2
- /**
3
- * nToklo
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- *
12
- * @category Ntoklo
13
- * @package Ntoklo_Recommendations
14
- * @copyright Copyright (c) 2013 nToklo (http://ntoklo.com)
15
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
16
- * @author nToklo
17
- */
18
- ?>
19
-
20
- <?php if ($this->getReviewsCount()): ?>
21
- <div class="ratings">
22
- <?php if ($this->getRatingSummary()):?>
23
- <div class="rating-box">
24
- <div class="rating" style="width:<?php echo $this->getRatingSummary() ?>%"></div>
25
- </div>
26
- <?php endif;?>
27
- <span class="amount"><a href="<?php echo $this->getReviewsUrl() ?>" class="ntoklo_conversion"><?php echo $this->__('%d Review(s)', $this->getReviewsCount()) ?></a></span>
28
- </div>
29
- <?php elseif ($this->getDisplayIfEmpty()): ?>
30
- <p class="no-rating"><a href="<?php echo $this->getReviewsUrl() ?>#review-form" class="ntoklo_conversion"><?php echo $this->__('Be the first to review this product') ?></a></p>
31
- <?php endif; ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/base/default/template/ntoklo/recommendations/widget/chart_vertical.phtml DELETED
@@ -1,45 +0,0 @@
1
- <?php
2
- /**
3
- * nToklo
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- *
12
- * @category Ntoklo
13
- * @package Ntoklo_Recommendations
14
- * @copyright Copyright (c) 2013 nToklo (http://ntoklo.com)
15
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
16
- * @author nToklo
17
- */
18
- ?>
19
-
20
- <?php if (($_products = $this->getItems()) && count($_products)): ?>
21
- <!-- nToklo Chart -->
22
- <div class="widget-ntoklo-container clearfix" style="clear:both">
23
- <div class="nt_wrapper nt_column nt_green nt_img_above">
24
- <p class="nt_header"><?php echo $this->getHeader() ?></p>
25
- <ul class="nt_widget">
26
- <?php $i=0; foreach ($_products as $_item): ?>
27
- <li>
28
- <div class="nt_item_wrap">
29
- <div class="nt_img_wrap">
30
- <a href="<?php echo $_item->getProductUrl() ?>" class="ntoklo_conversion"><img src="<?php echo $this->helper('catalog/image')->init($_item, 'thumbnail')->resize(100) ?>" alt="<?php echo $this->htmlEscape($_item->getName()) ?>"></a>
31
- </div>
32
- <div class="nt_info_wrap">
33
- <span class="nt_product_title"><?php echo $this->htmlEscape($_item->getName()) ?></span>
34
- <span class="nt_product_price"><?php echo Mage::helper('core')->currency($_item->getPrice()); ?></span>
35
- <a href="<?php echo $_item->getProductUrl() ?>" class="ntoklo_conversion nt_btn"><?php echo $this->__('More details') ?></a>
36
- </div>
37
- </div>
38
- </li>
39
- <?php endforeach ?>
40
- </ul>
41
- <div class="nt_logo"></div>
42
- </div>
43
- </div>
44
- <!-- //END nToklo Chart -->
45
- <?php endif ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/etc/modules/Ntoklo_Recommendations.xml DELETED
@@ -1,30 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * nToklo
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Open Software License (OSL 3.0)
9
- * that is bundled with this package in the file LICENSE.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/osl-3.0.php
12
- *
13
- * @category Ntoklo
14
- * @package Ntoklo_Recommendations
15
- * @copyright Copyright (c) 2013 nToklo (http://ntoklo.com)
16
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
17
- * @author nToklo
18
- */
19
- -->
20
- <config>
21
- <modules>
22
- <Ntoklo_Recommendations>
23
- <active>true</active>
24
- <codePool>community</codePool>
25
- <depends>
26
- <Mage_Cms />
27
- </depends>
28
- </Ntoklo_Recommendations>
29
- </modules>
30
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/locale/en_US/ntoklo_recommendations.csv DELETED
@@ -1,16 +0,0 @@
1
- "Ntoklo Recommendations","Ntoklo Recommendations"
2
- "Outputs Ntoklo recommendaded products, regardless page context","Outputs Ntoklo recommendaded products, regardless page context"
3
- "Widget type","Widget type"
4
- "Header","Header"
5
- "Widget's header been displayed on the page.","Widget's header been displayed on the page."
6
- "Time Window","Time Window"
7
- "The time window for which the charts are requested.","The time window for which the charts are requested."
8
- "Max products","Max products"
9
- "Limits the number of products displayed in the widget.","Limits the number of products displayed in the widget."
10
- "Column count","Column count"
11
- "The number of columns used when displaying in <strong>Recommendation Grid Template</strong>.","The number of columns used when displaying in <strong>Recommendation Grid Template</strong>."
12
- "Cache lifetime","Cache lifetime"
13
- "86400 by default, if not set. To refresh instantly, Clear the Blocks HTML Output Cache.","86400 by default, if not set. To refresh instantly, Clear the Blocks HTML Output Cache."
14
- "Debug","Debug"
15
- "Turn this ON to force logging of API call and set the first 4 products from catalog as API response to test the look and feel of the widget.","Turn this ON to force logging of API call and set the first 4 products from catalog as API response to test the look and feel of the widget."
16
- "Frontend Template","Frontend Template"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
package.xml CHANGED
@@ -1,23 +1,23 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>ntoklo_recommendations</name>
4
- <version>1.0.3</version>
5
  <stability>stable</stability>
6
- <license uri="http://opensource.org/licenses/OSL-3.0">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
- <summary>Displays personalised product recommendations and trending product charts through integration with nToklo for retail platform.</summary>
10
- <description>Seamlessly Integrates with nToklo for retail recommendations API&#x2019;s.&#xD;
11
  &#xD;
12
- Uses the Open Data Alliance Universal Variable - Generats UniversalVariable JSON object and submits it to nToklo for processing to leverage user behaviour.&#xD;
13
- &#xD;
14
- Utilises native Magento widgets to render personalised product recommendations and trending product charts through nToklo API&#x2019;s.&#xD;
15
- Integrates with your store CMS to account for product categories.</description>
16
- <notes>Enhancements to CSS and Registration Flow</notes>
17
- <authors><author><name>nToklo</name><user>auto-converted</user><email>dev@ntoklo.com</email></author></authors>
18
- <date>2013-12-05</date>
19
- <time>00:22:11</time>
20
- <contents><target name="magecommunity"><dir name="Ntoklo"><dir name="Recommendations"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Registration.php" hash="6454d0327fb5881aba96beaed86005ac"/></dir></dir></dir></dir><dir name="Widget"><dir name="Date"><file name="Helper.php" hash="6df6eb6926c5f06b085c980f0d640b72"/></dir><dir name="Type"><file name="Helper.php" hash="7003dba7c2b54e7dd03013de2f41a4e1"/></dir></dir></dir><file name="Chart.php" hash="2f1f29ce21a7eaf2cda2f576225de839"/><file name="UniversalVariable.php" hash="d98923906642289029a7ef80be5a0c4f"/></dir><dir name="Helper"><file name="Data.php" hash="aa1f42d8eb6d51e39be80f4b54056770"/></dir><dir name="Model"><dir name="Cache"><file name="UniversalVariable.php" hash="761f465d4fda0e3d48541fc67af5c4b1"/></dir><dir name="Resource"><dir name="Mysql4"><file name="Setup.php" hash="c76b856838d10860a74c2ec08d47bc87"/></dir></dir><dir name="Widget"><file name="Type.php" hash="f399f8084a0c9c270c92e5fccd74e50f"/></dir><file name="Observer.php" hash="9a22bdcae4fc457372692b0488f30833"/><file name="Service.php" hash="842507619406f53f312cb5ef01c37799"/><file name="UniversalVariable.php" hash="7744caef59b5c3f056f89577c108e0f5"/></dir><dir name="etc"><file name="adminhtml.xml" hash="aff0945a94da77aab01ef814d14309d5"/><file name="cache.xml" hash="9be6ef2826f8e880e0c2db016787cacf"/><file name="config.xml" hash="107ab3f5cb97e97826321310c8be7bfc"/><file name="system.xml" hash="d90aad78d74273219bbeb6bd3b38e477"/><file name="widget.xml" hash="e94eaffd9ce677d742161bca542c069b"/></dir><dir name="sql"><dir name="ntoklo_setup"><file name="mysql4-install-1.0.3.php" hash="96c7c0734c5290210b09dbb96f5cfa34"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="ntoklo"><dir name="recommendations"><dir name="widget"><file name="chart_horisontal.phtml" hash="d582b79bdca5e9da5cb723a91e6b3799"/><file name="chart_review_short.phtml" hash="25a789e2e031e33e6e82fcd8fd73aa23"/><file name="chart_vertical.phtml" hash="233500742979e1eb97499b9cfdb50cb4"/></dir><file name="universal_variable.phtml" hash="76ab001d6c660f77af83739540cf9edc"/></dir></dir></dir><dir name="layout"><file name="ntoklo_recommendations.xml" hash="b6649abad9f507fdf0e7b48d11d9a594"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Ntoklo_Recommendations.xml" hash="d809f1cc3329034ac5d3ffcc4fe40d4c"/></dir></target><target name="magelocale"><dir name="en_US"><file name="ntoklo_recommendations.csv" hash="ba56401beed41df865bd37b1df0c82aa"/></dir></target><target name="mageweb"><dir name="js"><dir name="ntoklo"><file name="util.js" hash="051d37aa940bb1b877435698e1827295"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="ntoklo"><file name="global.css" hash="6dbef7435a7cde07887d428fb5fbb2fa"/><file name="widget.css" hash="2d1a9869e0c5e857965d4158535237f2"/></dir></dir><dir name="images"><dir name="ntoklo"><file name="ntoklo_logo.png" hash="647bf0ef039f657f27f2340450be65d5"/><file name="ntoklo_logo_2x.png" hash="7ebefaa14abf7da4db85e39d5986cdbf"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="documentation"><dir name="skin"><dir name="img"><file name="cc.png" hash="83f629e3f2c6e94df256a92a0d826079"/><file name="config.png" hash="a0f8540c37bbaa614a6e6818c52b9b1e"/><file name="disablec1.png" hash="3b7a509db5f2228c1187dd169c8a7c34"/><file name="disablec2.png" hash="ce25b484b08735a1890a4871eefd23ef"/><file name="logo.png" hash="5bbc2b3e56f571eb96923185485c3a27"/><file name="widgets_1.png" hash="61c6c6acc64e9bad49e2546d43032767"/><file name="widgets_2.png" hash="a357562e6cb535458c30f8a6c53bd44d"/><file name="widgets_3.png" hash="cc6ec6b496b03e516c29eb8ed63aa7a9"/><file name="widgets_4.png" hash="1feb96648e38c0e95629bf897baeb26b"/></dir><file name="style.css" hash="f544a9e3edc200affa0a9be9af98e878"/></dir><file name="readme.html" hash="76a9aa7ea09fbb80af24ce340f498d13"/></dir></target></contents>
21
  <compatible/>
22
- <dependencies/>
23
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>ntoklo_recommendations</name>
4
+ <version>1.0.4</version>
5
  <stability>stable</stability>
6
+ <license>Open Software License (OSL 3.0)</license>
7
  <channel>community</channel>
8
  <extends/>
9
+ <summary>Displays personalised product recommendations and trending product charts through integration with nToklo for retail platform</summary>
10
+ <description>Features&#xD;
11
  &#xD;
12
+ 1. Seamlessly Integrates with nToklo for retail recommendations API&#x2019;s.&#xD;
13
+ 2. Uses the Open Data Alliance Universal Variable - Generats UniversalVariable JSON object and submits it to nToklo for processing to leverage user behaviour.&#xD;
14
+ 3. Utilises native widgets to render personalised product recommendations and trending product charts through nToklo API&#x2019;s.&#xD;
15
+ 4. Integrates with your store CMS to account for product categories</description>
16
+ <notes>Conversion optimisation </notes>
17
+ <authors><author><name>nToklo</name><user>nToklo</user><email>sandra.leske@ntoklo.com</email></author></authors>
18
+ <date>2014-04-17</date>
19
+ <time>14:02:10</time>
20
+ <contents><target name="magecommunity"><dir name="Ntoklo"><dir name="Recommendations"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Registration.php" hash="6454d0327fb5881aba96beaed86005ac"/></dir></dir></dir></dir><dir name="Widget"><dir name="Date"><file name="Helper.php" hash="29592c951ce694efb69397141a679226"/></dir><dir name="Type"><file name="Helper.php" hash="7003dba7c2b54e7dd03013de2f41a4e1"/></dir></dir></dir><file name="Chart.php" hash="2f1f29ce21a7eaf2cda2f576225de839"/><file name="UniversalVariable.php" hash="d98923906642289029a7ef80be5a0c4f"/></dir><dir name="Helper"><file name="Data.php" hash="d60ec0bb71c1c1ac7ec45477dfd0ef78"/></dir><dir name="Model"><dir name="Cache"><file name="UniversalVariable.php" hash="761f465d4fda0e3d48541fc67af5c4b1"/></dir><file name="Observer.php" hash="9a22bdcae4fc457372692b0488f30833"/><dir name="Resource"><dir name="Mysql4"><file name="Setup.php" hash="c76b856838d10860a74c2ec08d47bc87"/></dir></dir><file name="Service.php" hash="842507619406f53f312cb5ef01c37799"/><file name="UniversalVariable.php" hash="7744caef59b5c3f056f89577c108e0f5"/><dir name="Widget"><file name="Type.php" hash="f399f8084a0c9c270c92e5fccd74e50f"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="aff0945a94da77aab01ef814d14309d5"/><file name="cache.xml" hash="9be6ef2826f8e880e0c2db016787cacf"/><file name="config.xml" hash="c1df941154791751a1cb686f2c08cd54"/><file name="system.xml" hash="d90aad78d74273219bbeb6bd3b38e477"/><file name="widget.xml" hash="e94eaffd9ce677d742161bca542c069b"/></dir><dir name="sql"><dir name="ntoklo_setup"><file name="mysql4-install-1.0.4.php" hash="96c7c0734c5290210b09dbb96f5cfa34"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="ntoklo_recommendations.xml" hash="b6649abad9f507fdf0e7b48d11d9a594"/></dir><dir name="template"><dir name="ntoklo"><dir name="recommendations"><file name="universal_variable.phtml" hash="76ab001d6c660f77af83739540cf9edc"/></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="."><file name="Ntoklo_Recommendations.xml" hash=""/></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="ntoklo"><file name="global.css" hash="fd2d2b773d3ce16d41488e9051bad8c8"/><file name="widget.css" hash="2d1a9869e0c5e857965d4158535237f2"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="ntoklo"><file name="util.js" hash="051d37aa940bb1b877435698e1827295"/></dir></dir><dir name="documentation"><dir name="skin"><dir name="img"><file name="cc.png" hash="83f629e3f2c6e94df256a92a0d826079"/><file name="config.png" hash="a0f8540c37bbaa614a6e6818c52b9b1e"/><file name="disablec1.png" hash="3b7a509db5f2228c1187dd169c8a7c34"/><file name="disablec2.png" hash="ce25b484b08735a1890a4871eefd23ef"/><file name="logo.png" hash="5bbc2b3e56f571eb96923185485c3a27"/><file name="widgets_1.png" hash="61c6c6acc64e9bad49e2546d43032767"/><file name="widgets_2.png" hash="a357562e6cb535458c30f8a6c53bd44d"/><file name="widgets_3.png" hash="cc6ec6b496b03e516c29eb8ed63aa7a9"/><file name="widgets_4.png" hash="1feb96648e38c0e95629bf897baeb26b"/></dir><file name="style.css" hash="f544a9e3edc200affa0a9be9af98e878"/></dir><file name="readme.html" hash="76a9aa7ea09fbb80af24ce340f498d13"/></dir></target></contents>
21
  <compatible/>
22
+ <dependencies><required><php><min>5.3.0</min><max>5.5.1</max></php><package><name/><channel>connect.magentocommerce.com/core</channel><min/><max/></package></required></dependencies>
23
  </package>
skin/frontend/base/default/css/ntoklo/global.css CHANGED
@@ -1,5 +1,4 @@
1
- html,
2
- body {
3
  font-family: "Source Sans Pro", sans-serif;
4
  font-size: .9em;
5
  }
1
+ .nt_wrapper {
 
2
  font-family: "Source Sans Pro", sans-serif;
3
  font-size: .9em;
4
  }
skin/frontend/base/default/images/ntoklo/ntoklo_logo.png DELETED
Binary file
skin/frontend/base/default/images/ntoklo/ntoklo_logo_2x.png DELETED
Binary file