LetsSyncroLLC_Oct8ne - Version 2.1.3

Version Notes

New method GetCart.
New settings to configure succses Url.
Change link to public page.

Download this release

Release Info

Developer Oct8ne
Extension LetsSyncroLLC_Oct8ne
Version 2.1.3
Comparing to
See all releases


Code changes from version 2.1.2 to 2.1.3

app/code/community/LetsSyncroLLC/Oct8ne/Block/Accountconfig.php CHANGED
@@ -139,7 +139,7 @@ class LetsSyncroLLC_Oct8ne_Block_Accountconfig extends Mage_Core_Block_Template
139
  </tbody>
140
  </table>
141
  <br />
142
- <p class="LetsSyncro">' . $this->__('Don\'t have a OCT8NE account?') . ' <a href="' . $oct8neSignupUrl . '?planselected=platform" target="_blank">' . $this->__('Sign up now') . '</a></p>
143
  </fieldset>
144
  </form><br />';
145
 
139
  </tbody>
140
  </table>
141
  <br />
142
+ <p class="LetsSyncro">' . $this->__('Don\'t have a OCT8NE account?') . ' <a href="' . $oct8neSignupUrl . '" target="_blank">' . $this->__('Contact us') . '</a></p>
143
  </fieldset>
144
  </form><br />';
145
 
app/code/community/LetsSyncroLLC/Oct8ne/Helper/Data.php CHANGED
@@ -126,6 +126,31 @@ class LetsSyncroLLC_Oct8ne_Helper_Data extends Mage_Core_Helper_Abstract {
126
  }
127
  return $result;
128
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
129
 
130
  static public function createProductInfoFromProduct($product, $qty = null) {
131
 
@@ -358,7 +383,7 @@ class LetsSyncroLLC_Oct8ne_Helper_Data extends Mage_Core_Helper_Abstract {
358
  }
359
  }
360
  }
361
-
362
  private static function getDescriptionAttributes() {
363
  $descriptionAttrs = Mage::getStoreConfig('oct8neData/productData/productDataDescription');
364
  if (trim($descriptionAttrs) == '') {
126
  }
127
  return $result;
128
  }
129
+
130
+ public static function getCart() {
131
+ $quote = Mage::getSingleton('checkout/session')->getQuote();
132
+ $items = $quote->getAllVisibleItems();
133
+ $cart = array();
134
+ $totalItems = 0;
135
+ foreach ($items as $item) {
136
+ $product = $item->getProduct();
137
+ $totalItems += $item->getQty();
138
+ $cart[] = array(
139
+ "internalId" => $product->getId(),
140
+ "title" => htmlspecialchars($product->getName(), ENT_QUOTES, "UTF-8"),
141
+ "qty" => $item->getQty(),
142
+ "price" => $product->getPrice()
143
+ );
144
+ }
145
+ $result = array(
146
+ "price" => $quote->getSubtotal(),
147
+ "finalPrice" => $quote->getGrandTotal(),
148
+ "currency" => $quote->getQuoteCurrencyCode(),
149
+ "totalItems" => $totalItems,
150
+ "cart" => $cart,
151
+ );
152
+ return $result;
153
+ }
154
 
155
  static public function createProductInfoFromProduct($product, $qty = null) {
156
 
383
  }
384
  }
385
  }
386
+
387
  private static function getDescriptionAttributes() {
388
  $descriptionAttrs = Mage::getStoreConfig('oct8neData/productData/productDataDescription');
389
  if (trim($descriptionAttrs) == '') {
app/code/community/LetsSyncroLLC/Oct8ne/Helper/Url.php CHANGED
@@ -13,7 +13,7 @@ class LetsSyncroLLC_Oct8ne_Helper_Url extends Mage_Core_Helper_Url {
13
  public function getOct8neSignupUrl() {
14
  $signupUrl = Mage::registry('oct8neSignupUrl');
15
  if (!$signupUrl) {
16
- $signupUrl = "https://secure.oct8ne.com/signup";
17
  }
18
  return $signupUrl;
19
  }
13
  public function getOct8neSignupUrl() {
14
  $signupUrl = Mage::registry('oct8neSignupUrl');
15
  if (!$signupUrl) {
16
+ $signupUrl = "http://www.oct8ne.com";
17
  }
18
  return $signupUrl;
19
  }
app/code/community/LetsSyncroLLC/Oct8ne/Helper/Version.php CHANGED
@@ -8,6 +8,6 @@ class LetsSyncroLLC_Oct8ne_Helper_Version extends Mage_Core_Helper_Abstract {
8
  }
9
 
10
  static public function getApiVersion() {
11
- return "2.2";
12
  }
13
  }
8
  }
9
 
10
  static public function getApiVersion() {
11
+ return "2.3";
12
  }
13
  }
app/code/community/LetsSyncroLLC/Oct8ne/controllers/FrameController.php CHANGED
@@ -127,14 +127,10 @@ class LetsSyncroLLC_Oct8ne_FrameController extends Mage_Core_Controller_Front_Ac
127
  }
128
 
129
  public function getCartAction() {
130
- $this->setEnvironment();
131
- $customerDataHelper = Mage::helper('oct8ne/customerData');
132
- $cart = $customerDataHelper->getCartData();
133
- $results = array(
134
- 'total' => count($cart),
135
- 'results' => $cart
136
- );
137
- $this->returnJson($results);
138
  }
139
 
140
  public function addToWishlistAction() {
@@ -149,7 +145,7 @@ class LetsSyncroLLC_Oct8ne_FrameController extends Mage_Core_Controller_Front_Ac
149
  'result' => $result
150
  );
151
  $this->returnJson($results);
152
- }
153
 
154
  public function removeFromWishlistAction() {
155
  $this->setEnvironment();
127
  }
128
 
129
  public function getCartAction() {
130
+ // $this->setEnvironment();
131
+ $helper = Mage::helper('oct8ne'); /* @var $helper LetsSyncroLLC_Oct8ne_Helper_Data */
132
+ $result = $helper->getCart();
133
+ $this->returnJson($result);
 
 
 
 
134
  }
135
 
136
  public function addToWishlistAction() {
145
  'result' => $result
146
  );
147
  $this->returnJson($results);
148
+ }
149
 
150
  public function removeFromWishlistAction() {
151
  $this->setEnvironment();
app/code/community/LetsSyncroLLC/Oct8ne/controllers/SetupController.php CHANGED
@@ -40,6 +40,7 @@ class LetsSyncroLLC_Oct8ne_SetupController extends Mage_Core_Controller_Front_Ac
40
  $this->addSetting($dataList, $settings, 'oct8neData/advancedDataConfig/imageHelperName', "Image helper name", 'Example: "default" to use helper/images/default.php');
41
  $this->addSetting($dataList, $settings, 'oct8neData/advancedDataConfig/loadCompleteProductInfo', "Load complete product info", "1=true, 0=false");
42
  $this->addSetting($dataList, $settings, 'oct8neData/advancedDataConfig/imageGalleryPrefetch', "Prefetch image gallery", "1=true, 0=false");
 
43
 
44
  $response = $this->getResponse();
45
  $response->clearHeaders();
40
  $this->addSetting($dataList, $settings, 'oct8neData/advancedDataConfig/imageHelperName', "Image helper name", 'Example: "default" to use helper/images/default.php');
41
  $this->addSetting($dataList, $settings, 'oct8neData/advancedDataConfig/loadCompleteProductInfo', "Load complete product info", "1=true, 0=false");
42
  $this->addSetting($dataList, $settings, 'oct8neData/advancedDataConfig/imageGalleryPrefetch', "Prefetch image gallery", "1=true, 0=false");
43
+ $this->addSetting($dataList, $settings, 'oct8neSite/siteUrls/checkoutSuccessPageUrl', "Checkout success page URL", "Example: \"checkout/onepage/success\"");
44
 
45
  $response = $this->getResponse();
46
  $response->clearHeaders();
app/code/community/LetsSyncroLLC/Oct8ne/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <LetsSyncroLLC_Oct8ne>
5
- <version>2.1.2</version>
6
  </LetsSyncroLLC_Oct8ne>
7
  </modules>
8
 
@@ -229,6 +229,11 @@
229
  <title>Oct8ne Data</title>
230
  </oct8neData>
231
  </children>
 
 
 
 
 
232
  </config>
233
 
234
  </children>
2
  <config>
3
  <modules>
4
  <LetsSyncroLLC_Oct8ne>
5
+ <version>2.1.3</version>
6
  </LetsSyncroLLC_Oct8ne>
7
  </modules>
8
 
229
  <title>Oct8ne Data</title>
230
  </oct8neData>
231
  </children>
232
+ <children>
233
+ <oct8neSite>
234
+ <title>Site configuration</title>
235
+ </oct8neSite>
236
+ </children>
237
  </config>
238
 
239
  </children>
app/code/community/LetsSyncroLLC/Oct8ne/etc/system.xml CHANGED
@@ -117,6 +117,37 @@
117
  </groups>
118
  </oct8neData>
119
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
120
  <oct8neSearch>
121
  <label>Search</label>
122
  <tab>oct8ne_tab</tab>
117
  </groups>
118
  </oct8neData>
119
 
120
+ <oct8neSite>
121
+ <label>Site</label>
122
+ <sort_order>220</sort_order>
123
+ <tab>oct8ne_tab</tab>
124
+ <show_in_default>1</show_in_default>
125
+ <show_in_website>1</show_in_website>
126
+ <show_in_store>1</show_in_store>
127
+ <groups>
128
+ <siteUrls translate="label">
129
+ <label>Site custom URLs</label>
130
+ <frontend_type>text</frontend_type>
131
+ <sort_order>1</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
+ <fields>
136
+ <checkoutSuccessPageUrl translate="label">
137
+ <label>Checkout success page URL</label>
138
+ <comment>Full or partial URL of the page shown to inform the user that the purchase has been saved successfully. For example: "//www.myecommerce.com/thank-you" or "/checkout/onepage/success".
139
+ </comment>
140
+ <frontend_type>text</frontend_type>
141
+ <sort_order>30</sort_order>
142
+ <show_in_default>1</show_in_default>
143
+ <show_in_website>1</show_in_website>
144
+ <show_in_store>1</show_in_store>
145
+ </checkoutSuccessPageUrl>
146
+ </fields>
147
+ </siteUrls>
148
+ </groups>
149
+ </oct8neSite>
150
+
151
  <oct8neSearch>
152
  <label>Search</label>
153
  <tab>oct8ne_tab</tab>
app/code/community/LetsSyncroLLC/Oct8ne/sql/oct8ne_setup/mysql4-install-2.1.3.php ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+ $installer->startSetup();
5
+
6
+
7
+ // *******************************************
8
+ // Create and populate table letssyncro
9
+ // *******************************************
10
+
11
+ $installer->run("
12
+ DROP TABLE IF EXISTS {$this->getTable('letssyncro')};
13
+ CREATE TABLE {$this->getTable('letssyncro')} (
14
+ `letssyncro_id` int(5) NOT NULL auto_increment,
15
+ `email` varchar(100) NULL,
16
+ `password` varchar(100) NULL,
17
+ `urlapi` varchar(100) NOT NULL,
18
+ `licenseid` varchar(32) NULL,
19
+ `apitoken` varchar(32) NULL,
20
+ `enabled` varchar(1) NULL,
21
+ PRIMARY KEY (`letssyncro_id`)
22
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
23
+ ");
24
+
25
+ try {
26
+
27
+ $linkupUrl = Mage::helper('oct8ne/url')->getOct8neLinkupServiceUrl();
28
+ $installer->run("
29
+ INSERT INTO {$this->getTable('letssyncro')}
30
+ (`letssyncro_id`, `email`, `password`, `urlapi`, `licenseid`, `apitoken`, `enabled`) VALUES
31
+ (1, '', '', '{$linkupUrl}', '', '', '0');
32
+ ");
33
+ } catch (\Exception $e) {
34
+ // the insert may fail if we run it more than once (duplicate key)
35
+ // we need this check to prevent errors during the rename of the module
36
+ }
37
+
38
+ // ***************
39
+ // Drop old tables
40
+ // ***************
41
+ $installer->run("
42
+ DROP TABLE IF EXISTS {$this->getTable('orderproducts')}
43
+ ");
44
+
45
+ $installer->run("
46
+ DROP TABLE IF EXISTS {$this->getTable('quoteproducts')}
47
+ ");
48
+
49
+ // *******************************************
50
+ // Create table for orders and quotes
51
+ // *******************************************
52
+
53
+ $ordersTable = $this->getTable('letssyncro_orders');
54
+ $installer->run("
55
+ CREATE TABLE IF NOT EXISTS {$ordersTable} (
56
+ `quote_id` int(11) unsigned NOT NULL,
57
+ `order_id` int(11) unsigned,
58
+ `store_id` int(11) unsigned NOT NULL,
59
+ `customer_id` int(11) unsigned,
60
+ `session_id` varchar(32) NOT NULL,
61
+ `price` decimal(12,2) NOT NULL,
62
+ `final_price` decimal (12,2) NOT NULL,
63
+ `currency` varchar(3) NOT NULL default 'USD',
64
+ `products_count` int(11) unsigned NOT NULL,
65
+ `items_count` int(11) unsigned NOT NULL,
66
+ `last_action` varchar(1) NOT NULL,
67
+ `utc_created` datetime NOT NULL default '0000-00-00 00:00:00',
68
+ `utc_last_modified` datetime NOT NULL default '0000-00-00 00:00:00',
69
+ PRIMARY KEY (`quote_id`),
70
+ INDEX `{$ordersTable}_modified`(`utc_last_modified`)
71
+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8;"
72
+ );
73
+
74
+ $installer->endSetup();
app/code/community/LetsSyncroLLC/Oct8ne/sql/oct8ne_setup/mysql4-upgrade-2.1.2-2.1.3.php ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ $installer = $this;
4
+ $installer->startSetup();
5
+
6
+ // Nothing to do
7
+
8
+ $installer->endSetup();
app/design/frontend/base/default/template/oct8ne/letssyncro.phtml CHANGED
@@ -44,7 +44,11 @@ if (is_null(Mage::registry('oct8ne')) && !$disable) {
44
  $apiMajorVersion = substr($apiVersion, 0, 1);
45
  $adapterVersion = $helper->getAdapterVersion();
46
  $oct8neHostName = Mage::helper('oct8ne/url')->getOct8neHostName();
47
-
 
 
 
 
48
  echo <<<EOT
49
 
50
  <script type= "text/javascript">
@@ -59,6 +63,7 @@ if (is_null(Mage::registry('oct8ne')) && !$disable) {
59
  oct8ne.baseUrl = "$baseurl";
60
  oct8ne.checkoutUrl = "$checkouturl";
61
  oct8ne.loginUrl = "$loginurl";
 
62
  oct8ne.currentProduct = $currentProduct;
63
  oct8ne.addToCartHttpVerb = "post";
64
  oct8ne.locale = "$locale";
44
  $apiMajorVersion = substr($apiVersion, 0, 1);
45
  $adapterVersion = $helper->getAdapterVersion();
46
  $oct8neHostName = Mage::helper('oct8ne/url')->getOct8neHostName();
47
+
48
+ $checkoutSuccessPageUrl = Mage::getStoreConfig('oct8neSite/siteUrls/checkoutSuccessPageUrl');
49
+ if(!$checkoutSuccessPageUrl || trim($checkoutSuccessPageUrl)=='') {
50
+ $checkoutSuccessPageUrl = _letsyncro_remove_http(Mage::getUrl('checkout/onepage/success'));
51
+ }
52
  echo <<<EOT
53
 
54
  <script type= "text/javascript">
63
  oct8ne.baseUrl = "$baseurl";
64
  oct8ne.checkoutUrl = "$checkouturl";
65
  oct8ne.loginUrl = "$loginurl";
66
+ oct8ne.checkoutSuccessUrl = "$checkoutSuccessPageUrl";
67
  oct8ne.currentProduct = $currentProduct;
68
  oct8ne.addToCartHttpVerb = "post";
69
  oct8ne.locale = "$locale";
app/etc/modules/LetsSyncroLLC_Oct8ne.xml CHANGED
@@ -4,7 +4,7 @@
4
  <LetsSyncroLLC_Oct8ne>
5
  <active>true</active>
6
  <codePool>community</codePool>
7
- <version>2.1.2</version>
8
  <depends>
9
  <Mage_Eav/>
10
  <Mage_Dataflow/>
4
  <LetsSyncroLLC_Oct8ne>
5
  <active>true</active>
6
  <codePool>community</codePool>
7
+ <version>2.1.3</version>
8
  <depends>
9
  <Mage_Eav/>
10
  <Mage_Dataflow/>
package.xml CHANGED
@@ -1,20 +1,22 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>LetsSyncroLLC_Oct8ne</name>
4
- <version>2.1.2</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/gpl-license.php">GPL</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Oct8ne extension</summary>
10
  <description>Agent-assisted search, proprietary co-viewing technology, &amp; live chat to engage in personal selling &amp; service.</description>
11
- <notes>Currency and language support.&#xD;
12
- Added 2 new search engines: Solr , Celebros&#xD;
13
- Minor bugs fixed</notes>
 
 
14
  <authors><author><name>Oct8ne</name><user>Oct8ne</user><email>xavier.gonzalez@oct8ne.com</email></author></authors>
15
- <date>2016-02-11</date>
16
- <time>14:18:27</time>
17
- <contents><target name="magecommunity"><dir name="LetsSyncroLLC"><dir name="Oct8ne"><dir name="Block"><file name="Accountconfig.php" hash="283347a4600609e266ef17c58c2bd274"/><dir name="Customer"><file name="Notifier.php" hash="58785a446c6c6a69db0348b81852028b"/></dir><dir name="Html"><file name="Head.php" hash="7fec049acbd3391ce0176982eede105b"/></dir><file name="Index.php" hash="d4cc07e7e6412cb9f3cedf2508f56461"/><dir name="Mage"><dir name="Product"><file name="View.php" hash="ca15ba7c5cc756cc18af5c9c48fbe492"/></dir></dir></dir><dir name="Helper"><file name="CustomerData.php" hash="38658993e66fee8d5e3170658fa71556"/><file name="Data.php" hash="82ea0f1c975e9a44bf287606eb529391"/><file name="Debug.php" hash="147f2d06848b4596a0409b471cf0769a"/><dir name="Image"><file name="Default.php" hash="74ff374e88db99c4ae911bd3303e4c8e"/><file name="Schuler.php" hash="ea104cd9d9df2c62beab7af298e45fe1"/></dir><file name="Reports.php" hash="6df3362a381e507a69fbf27162174f1b"/><dir name="Search"><file name="Base.php" hash="7abe2fbdd34cead6bcfd3b72b739054c"/><file name="Celebros.php" hash="9c7007d3a3501d63af8207e107f6ac0f"/><dir name="CelebrosAPI"><file name="QwiserAnswer.php" hash="56f07a272ce8de8738868fc4c7a74165"/><file name="QwiserAnswers.php" hash="a7ac00848b3f60935771880b75aba90c"/><file name="QwiserConcept.php" hash="32ffebe11630864b666fe66f37eab1b2"/><file name="QwiserConcepts.php" hash="0b3c0fada961fe22dd6cbb3a4b719d2a"/><file name="QwiserProduct.php" hash="09069308e5f5fc862ddafebe7152f40b"/><file name="QwiserProductAnswer.php" hash="9dc1c8c9a929affa9db5a339ac1b7317"/><file name="QwiserProductAnswers.php" hash="699fc568eeb8bfc3d4bcc9b24102d3ad"/><file name="QwiserProductField.php" hash="273c36aad014b9220201881738eeafea"/><file name="QwiserProductFields.php" hash="4670e55b10d57c4208d9e5bacdd1d91c"/><file name="QwiserProducts.php" hash="cf2f76940b1c508823d00fbb7817cd06"/><file name="QwiserProductsMetaData.php" hash="4d54fae9b996ea18bbad5a60cd72c52a"/><file name="QwiserQuestion.php" hash="a148b2193de6967c3a12f43b939b92f2"/><file name="QwiserQuestions.php" hash="9de5d58ab267ea6a4ea9084d54920ddd"/><file name="QwiserSearchAPI.php" hash="e2680c99083553f6e0dc908ba3875603"/><file name="QwiserSearchPath.php" hash="300327589bf6720d0ae400c9cce755e7"/><file name="QwiserSearchPathEntry.php" hash="6e4192df47fc6c7ebdbb6251b6401e57"/><file name="QwiserSearchResults.php" hash="379337770db03fc27377be8de14ebd55"/><file name="QwiserSpellerInformation.php" hash="c52100535c3f0dc9650740cdbda6e40a"/><file name="SearchInformation.php" hash="de29fd1136f2512c18603164abfa58af"/><file name="SortingOptions.php" hash="a55d1eaabfee811b9f71dfdbb61f5c9a"/><file name="domxml-php4-to-php5.php" hash="29c0571bea402f63987c09d811d1a662"/></dir><file name="Magento.php" hash="0ae593bd70db8952c897682082594c10"/><file name="Sli.php" hash="c3cbe01a28f09a0e83bffb7764fb40c1"/><file name="Solr.php" hash="e391c51c27d6004e193281605603358d"/></dir><file name="Url.php" hash="c1ea68e020ccf7c3622028a3ca6fb4c7"/><file name="Version.php" hash="2e9384d1d71e8c52b0fd5f66bdbf843b"/><file name="Wishlist.php" hash="95a30da6de9131026580e6475a2ea951"/></dir><dir name="Model"><file name="Cron.php" hash="11fbdce80ef509a89cbc055960c627dd"/><file name="ImageWidth.php" hash="ddffd8d74a25f989b1116a663ac3a9e6"/><file name="Letssyncro.php" hash="a7755ee759fa31f004207823314a907d"/><dir name="Mage"><file name="Onepage.php" hash="400ea1de621a7d2e6b0e04db55b60027"/><file name="Request.php" hash="feee181c817bc4a1ed8d662104ddb1af"/><file name="Rewrite.php" hash="5699a8b1707724c4ad01fd6998cf12d6"/><file name="Url.php" hash="82a05832eaea74fedfd2c5b081dc5cc6"/></dir><dir name="Mysql4"><dir name="LetsSyncro"><file name="Collection.php" hash="1820b31106065627aa81007f966de6b7"/></dir><file name="Letssyncro.php" hash="81b49a4f7770d408eacd230a41434cbf"/><dir name="Order"><file name="Collection.php" hash="431a18fb0f8a2d29ea44a1b617b48382"/></dir><file name="Order.php" hash="1fd857af382915617c1d64d438a842ab"/></dir><file name="Observer.php" hash="bdfb77a7082ac8c27756b5bf7f4779df"/><file name="Order.php" hash="5ea076e3f76f9a28a5ab6eee1f157b69"/><file name="Orderproducts.php" hash="9edf0ab5159b046d0d33c2766087183f"/><file name="Quoteproducts.php" hash="3b6baf23d5ab4136c52fe24d470a3fd0"/><file name="SearchEngines.php" hash="d894f3f32f74bde7899db50dcf3e2719"/></dir><dir name="controllers"><file name="AccountController.php" hash="c900a756947b61498e5edd2e39b1d0bf"/><file name="FrameController.php" hash="7bf5aa77dc8db63ad87852f827fe31fe"/><file name="IndexController.php" hash="5a63469c2dead9b78a262fd580a3e43b"/><file name="Oct8neAdminController.php" hash="159d851a7b51f3483ebdfe2b49b05b4a"/><file name="SetupController.php" hash="106bfaad55a83d632cf176be3590badd"/></dir><dir name="etc"><file name="config.xml" hash="d992cb86aea439fc0919cebb19142201"/><file name="system.xml" hash="a993ef807a9c88f89354d66ef2dd4ae7"/></dir><dir name="sql"><dir name="oct8ne_setup"><file name="mysql4-install-2.0.0.php" hash="7cd9ed6b373a104ec7a27b1b2f26b570"/><file name="mysql4-install-2.1.0.php" hash="0c268a08bbfc48a072fdfb75c7013a43"/><file name="mysql4-install-2.1.2.php" hash="0c268a08bbfc48a072fdfb75c7013a43"/><file name="mysql4-upgrade-1-2.1.0.php" hash="5883e47d9718350d49146e33ba8fbd84"/><file name="mysql4-upgrade-1.0.0-1.1.0.php" hash="0944f9c420562fa8071b04eff2abdb15"/><file name="mysql4-upgrade-1.1.6-1.1.7.php" hash="eecd1f66e51507306abf5e4fa5d70584"/><file name="mysql4-upgrade-1.1.7-2.0.0.php" hash="3c7e1655fb0b45dd5dc01aca98929679"/><file name="mysql4-upgrade-2.0.0-2.0.3.php" hash="0288d291dec83584d97052e62b64a738"/><file name="mysql4-upgrade-2.0.3-2.1.0.php" hash="4a06d9802360e45a08d417168c260f15"/><file name="mysql4-upgrade-2.1.0-2.1.1.php" hash="0288d291dec83584d97052e62b64a738"/><file name="mysql4-upgrade-2.1.1-2.1.2.php" hash="0288d291dec83584d97052e62b64a738"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="oct8ne"><dir name="layout"><file name="oct8ne.xml" hash="664f6b6c51799aba0fa905cbc80eb703"/></dir><dir name="template"><dir name="page"><file name="1column.phtml" hash="3fbf17f71254a75cbf3261eab5a727ab"/><file name="2columns-left.phtml" hash="3fbf17f71254a75cbf3261eab5a727ab"/><file name="2columns-right.phtml" hash="3fbf17f71254a75cbf3261eab5a727ab"/><file name="3columns.phtml" hash="3fbf17f71254a75cbf3261eab5a727ab"/></dir></dir></dir></dir><dir name="base"><dir name="default"><dir name="layout"><file name="oct8ne.xml" hash="4b6f167fdbaf25f864934c0e8ecdda51"/></dir><dir name="template"><dir name="oct8ne"><dir name="frame"><file name="clean-page.phtml" hash="86c6580270709b8adb8a624130704cb5"/><dir name="productview"><file name="additional.phtml" hash="d0f80a4f31b31154af12197301cbc524"/><file name="addto.phtml" hash="358f19e35ff76f853cfad50ad35329fc"/><file name="addtocart.phtml" hash="06ac8be9a7197e87e8c5972c27804cc9"/><file name="attributes.phtml" hash="def5531385ad60aac88274bd91f76f52"/><file name="description.phtml" hash="09674e0a56d36f27c93d3a52c3a880c4"/><file name="media.phtml" hash="b23c4e9ef29e00d2f592d822fec8e52c"/><file name="media.phtml.ORIGINAL" hash="071f4d92269b2cbfa1a14271afbf0dbe"/><dir name="options"><file name="js.phtml" hash="7d9917d908ca99033c3473ecc10d895d"/><dir name="type"><file name="date.phtml" hash="41a612891cda695e3023d15a460c4325"/><file name="default.phtml" hash="b6f6d8e715f2a1d59913f313654fc38a"/><file name="file.phtml" hash="5e336ccdfa66b78264e5a0e859600d74"/><file name="select.phtml" hash="162f029fc825b78676cce70633805e62"/><file name="text.phtml" hash="c2c2940fb278d952e0e0d5d232ba5ed9"/></dir><dir name="wrapper"><file name="bottom.phtml" hash="182b49972e67cc834b8e1094a3984f5b"/></dir><file name="wrapper.phtml" hash="b635f6abf10b920afb6000b462134db6"/></dir><file name="options.phtml" hash="60d92d70da66f28300788027aa6f3056"/><file name="price.phtml" hash="06e90ec3368d07d62c3895f706069f96"/><file name="price_clone.phtml" hash="fb1ca9b19f97b0498f529b96c5c0e372"/><file name="tierprices.phtml" hash="4ac50d3c9f54d11fa5041a361485da74"/><dir name="type"><file name="configurable.phtml" hash="b9a427816f9c8a3d0d7179e8d5382683"/><file name="default.phtml" hash="e7f000d4b7fbc62f4e155e429f976126"/><file name="grouped.phtml" hash="9ce42ac44794853963bf68e9f2e911b0"/><dir name="options"><file name="configurable.phtml" hash="2636b369c1ceacd1b131f77ade2c996f"/></dir><file name="simple.phtml" hash="b9a427816f9c8a3d0d7179e8d5382683"/><file name="virtual.phtml" hash="b9a427816f9c8a3d0d7179e8d5382683"/></dir></dir><file name="productview.phtml" hash="da287c78285ecb003bbee37491d3a2f2"/></dir><file name="letssyncro.phtml" hash="ab7c4d6a663cc9f7b5d69d981ade1688"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="LetsSyncroLLC_Oct8ne.xml" hash="ba2db49f4337a40d008efd8c8c70381c"/></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="LetsSyncroLLC_Oct8ne.csv" hash="686df4107da7e35e243b629c5ee57963"/></dir><dir name="es_ES"><file name="LetsSyncroLLC_Oct8ne.csv" hash="eb0b3ddaae1e2e52005e9ab23cb37163"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><file name="oct8ne.css" hash="4255fddac8c054bbe32621cdccf844b8"/></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><file name="LetsSyncro_Logo.png" hash="2104af20cc380d0c745531e1dca2f97c"/></dir></dir></dir></dir></target></contents>
18
  <compatible/>
19
  <dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
20
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>LetsSyncroLLC_Oct8ne</name>
4
+ <version>2.1.3</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/gpl-license.php">GPL</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>Oct8ne extension</summary>
10
  <description>Agent-assisted search, proprietary co-viewing technology, &amp; live chat to engage in personal selling &amp; service.</description>
11
+ <notes>New method GetCart.&#xD;
12
+ New settings to configure succses Url.&#xD;
13
+ Change link to public page.&#xD;
14
+ &#xD;
15
+ </notes>
16
  <authors><author><name>Oct8ne</name><user>Oct8ne</user><email>xavier.gonzalez@oct8ne.com</email></author></authors>
17
+ <date>2016-03-08</date>
18
+ <time>12:50:21</time>
19
+ <contents><target name="magecommunity"><dir name="LetsSyncroLLC"><dir name="Oct8ne"><dir name="Block"><file name="Accountconfig.php" hash="a328da05dac8135644531e150628a318"/><dir name="Customer"><file name="Notifier.php" hash="58785a446c6c6a69db0348b81852028b"/></dir><dir name="Html"><file name="Head.php" hash="7fec049acbd3391ce0176982eede105b"/></dir><file name="Index.php" hash="d4cc07e7e6412cb9f3cedf2508f56461"/><dir name="Mage"><dir name="Product"><file name="View.php" hash="ca15ba7c5cc756cc18af5c9c48fbe492"/></dir></dir></dir><dir name="Helper"><file name="CustomerData.php" hash="38658993e66fee8d5e3170658fa71556"/><file name="Data.php" hash="629a96987cf9bab775e402166448f3eb"/><file name="Debug.php" hash="147f2d06848b4596a0409b471cf0769a"/><dir name="Image"><file name="Default.php" hash="74ff374e88db99c4ae911bd3303e4c8e"/><file name="Schuler.php" hash="ea104cd9d9df2c62beab7af298e45fe1"/></dir><file name="Reports.php" hash="6df3362a381e507a69fbf27162174f1b"/><dir name="Search"><file name="Base.php" hash="7abe2fbdd34cead6bcfd3b72b739054c"/><file name="Celebros.php" hash="9c7007d3a3501d63af8207e107f6ac0f"/><dir name="CelebrosAPI"><file name="QwiserAnswer.php" hash="56f07a272ce8de8738868fc4c7a74165"/><file name="QwiserAnswers.php" hash="a7ac00848b3f60935771880b75aba90c"/><file name="QwiserConcept.php" hash="32ffebe11630864b666fe66f37eab1b2"/><file name="QwiserConcepts.php" hash="0b3c0fada961fe22dd6cbb3a4b719d2a"/><file name="QwiserProduct.php" hash="09069308e5f5fc862ddafebe7152f40b"/><file name="QwiserProductAnswer.php" hash="9dc1c8c9a929affa9db5a339ac1b7317"/><file name="QwiserProductAnswers.php" hash="699fc568eeb8bfc3d4bcc9b24102d3ad"/><file name="QwiserProductField.php" hash="273c36aad014b9220201881738eeafea"/><file name="QwiserProductFields.php" hash="4670e55b10d57c4208d9e5bacdd1d91c"/><file name="QwiserProducts.php" hash="cf2f76940b1c508823d00fbb7817cd06"/><file name="QwiserProductsMetaData.php" hash="4d54fae9b996ea18bbad5a60cd72c52a"/><file name="QwiserQuestion.php" hash="a148b2193de6967c3a12f43b939b92f2"/><file name="QwiserQuestions.php" hash="9de5d58ab267ea6a4ea9084d54920ddd"/><file name="QwiserSearchAPI.php" hash="e2680c99083553f6e0dc908ba3875603"/><file name="QwiserSearchPath.php" hash="300327589bf6720d0ae400c9cce755e7"/><file name="QwiserSearchPathEntry.php" hash="6e4192df47fc6c7ebdbb6251b6401e57"/><file name="QwiserSearchResults.php" hash="379337770db03fc27377be8de14ebd55"/><file name="QwiserSpellerInformation.php" hash="c52100535c3f0dc9650740cdbda6e40a"/><file name="SearchInformation.php" hash="de29fd1136f2512c18603164abfa58af"/><file name="SortingOptions.php" hash="a55d1eaabfee811b9f71dfdbb61f5c9a"/><file name="domxml-php4-to-php5.php" hash="29c0571bea402f63987c09d811d1a662"/></dir><file name="Magento.php" hash="0ae593bd70db8952c897682082594c10"/><file name="Sli.php" hash="c3cbe01a28f09a0e83bffb7764fb40c1"/><file name="Solr.php" hash="e391c51c27d6004e193281605603358d"/></dir><file name="Url.php" hash="86a93cb5528c89ea8417f04bd3e2504b"/><file name="Version.php" hash="fe41f98f2f73b6252f0e2c4fca830369"/><file name="Wishlist.php" hash="95a30da6de9131026580e6475a2ea951"/></dir><dir name="Model"><file name="Cron.php" hash="11fbdce80ef509a89cbc055960c627dd"/><file name="ImageWidth.php" hash="ddffd8d74a25f989b1116a663ac3a9e6"/><file name="Letssyncro.php" hash="a7755ee759fa31f004207823314a907d"/><dir name="Mage"><file name="Onepage.php" hash="400ea1de621a7d2e6b0e04db55b60027"/><file name="Request.php" hash="feee181c817bc4a1ed8d662104ddb1af"/><file name="Rewrite.php" hash="5699a8b1707724c4ad01fd6998cf12d6"/><file name="Url.php" hash="82a05832eaea74fedfd2c5b081dc5cc6"/></dir><dir name="Mysql4"><dir name="LetsSyncro"><file name="Collection.php" hash="1820b31106065627aa81007f966de6b7"/></dir><file name="Letssyncro.php" hash="81b49a4f7770d408eacd230a41434cbf"/><dir name="Order"><file name="Collection.php" hash="431a18fb0f8a2d29ea44a1b617b48382"/></dir><file name="Order.php" hash="1fd857af382915617c1d64d438a842ab"/></dir><file name="Observer.php" hash="bdfb77a7082ac8c27756b5bf7f4779df"/><file name="Order.php" hash="5ea076e3f76f9a28a5ab6eee1f157b69"/><file name="Orderproducts.php" hash="9edf0ab5159b046d0d33c2766087183f"/><file name="Quoteproducts.php" hash="3b6baf23d5ab4136c52fe24d470a3fd0"/><file name="SearchEngines.php" hash="d894f3f32f74bde7899db50dcf3e2719"/></dir><dir name="controllers"><file name="AccountController.php" hash="c900a756947b61498e5edd2e39b1d0bf"/><file name="FrameController.php" hash="4b19bcffd7e4cecc117543d2204ec22c"/><file name="IndexController.php" hash="5a63469c2dead9b78a262fd580a3e43b"/><file name="Oct8neAdminController.php" hash="159d851a7b51f3483ebdfe2b49b05b4a"/><file name="SetupController.php" hash="b9f461cec0fdf8b92a5becf09aa7460f"/></dir><dir name="etc"><file name="config.xml" hash="0e501de3181b26282287d9e0f0c2eb12"/><file name="system.xml" hash="9263ef911019a940dfa3d26017d784c9"/></dir><dir name="sql"><dir name="oct8ne_setup"><file name="mysql4-install-2.0.0.php" hash="7cd9ed6b373a104ec7a27b1b2f26b570"/><file name="mysql4-install-2.1.0.php" hash="0c268a08bbfc48a072fdfb75c7013a43"/><file name="mysql4-install-2.1.2.php" hash="0c268a08bbfc48a072fdfb75c7013a43"/><file name="mysql4-install-2.1.3.php" hash="0c268a08bbfc48a072fdfb75c7013a43"/><file name="mysql4-upgrade-1-2.1.0.php" hash="5883e47d9718350d49146e33ba8fbd84"/><file name="mysql4-upgrade-1.0.0-1.1.0.php" hash="0944f9c420562fa8071b04eff2abdb15"/><file name="mysql4-upgrade-1.1.6-1.1.7.php" hash="eecd1f66e51507306abf5e4fa5d70584"/><file name="mysql4-upgrade-1.1.7-2.0.0.php" hash="3c7e1655fb0b45dd5dc01aca98929679"/><file name="mysql4-upgrade-2.0.0-2.0.3.php" hash="0288d291dec83584d97052e62b64a738"/><file name="mysql4-upgrade-2.0.3-2.1.0.php" hash="4a06d9802360e45a08d417168c260f15"/><file name="mysql4-upgrade-2.1.0-2.1.1.php" hash="0288d291dec83584d97052e62b64a738"/><file name="mysql4-upgrade-2.1.1-2.1.2.php" hash="0288d291dec83584d97052e62b64a738"/><file name="mysql4-upgrade-2.1.2-2.1.3.php" hash="0288d291dec83584d97052e62b64a738"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="default"><dir name="oct8ne"><dir name="layout"><file name="oct8ne.xml" hash="664f6b6c51799aba0fa905cbc80eb703"/></dir><dir name="template"><dir name="page"><file name="1column.phtml" hash="3fbf17f71254a75cbf3261eab5a727ab"/><file name="2columns-left.phtml" hash="3fbf17f71254a75cbf3261eab5a727ab"/><file name="2columns-right.phtml" hash="3fbf17f71254a75cbf3261eab5a727ab"/><file name="3columns.phtml" hash="3fbf17f71254a75cbf3261eab5a727ab"/></dir></dir></dir></dir><dir name="base"><dir name="default"><dir name="layout"><file name="oct8ne.xml" hash="4b6f167fdbaf25f864934c0e8ecdda51"/></dir><dir name="template"><dir name="oct8ne"><dir name="frame"><file name="clean-page.phtml" hash="86c6580270709b8adb8a624130704cb5"/><dir name="productview"><file name="additional.phtml" hash="d0f80a4f31b31154af12197301cbc524"/><file name="addto.phtml" hash="358f19e35ff76f853cfad50ad35329fc"/><file name="addtocart.phtml" hash="06ac8be9a7197e87e8c5972c27804cc9"/><file name="attributes.phtml" hash="def5531385ad60aac88274bd91f76f52"/><file name="description.phtml" hash="09674e0a56d36f27c93d3a52c3a880c4"/><file name="media.phtml" hash="b23c4e9ef29e00d2f592d822fec8e52c"/><file name="media.phtml.ORIGINAL" hash="071f4d92269b2cbfa1a14271afbf0dbe"/><dir name="options"><file name="js.phtml" hash="7d9917d908ca99033c3473ecc10d895d"/><dir name="type"><file name="date.phtml" hash="41a612891cda695e3023d15a460c4325"/><file name="default.phtml" hash="b6f6d8e715f2a1d59913f313654fc38a"/><file name="file.phtml" hash="5e336ccdfa66b78264e5a0e859600d74"/><file name="select.phtml" hash="162f029fc825b78676cce70633805e62"/><file name="text.phtml" hash="c2c2940fb278d952e0e0d5d232ba5ed9"/></dir><dir name="wrapper"><file name="bottom.phtml" hash="182b49972e67cc834b8e1094a3984f5b"/></dir><file name="wrapper.phtml" hash="b635f6abf10b920afb6000b462134db6"/></dir><file name="options.phtml" hash="60d92d70da66f28300788027aa6f3056"/><file name="price.phtml" hash="06e90ec3368d07d62c3895f706069f96"/><file name="price_clone.phtml" hash="fb1ca9b19f97b0498f529b96c5c0e372"/><file name="tierprices.phtml" hash="4ac50d3c9f54d11fa5041a361485da74"/><dir name="type"><file name="configurable.phtml" hash="b9a427816f9c8a3d0d7179e8d5382683"/><file name="default.phtml" hash="e7f000d4b7fbc62f4e155e429f976126"/><file name="grouped.phtml" hash="9ce42ac44794853963bf68e9f2e911b0"/><dir name="options"><file name="configurable.phtml" hash="2636b369c1ceacd1b131f77ade2c996f"/></dir><file name="simple.phtml" hash="b9a427816f9c8a3d0d7179e8d5382683"/><file name="virtual.phtml" hash="b9a427816f9c8a3d0d7179e8d5382683"/></dir></dir><file name="productview.phtml" hash="da287c78285ecb003bbee37491d3a2f2"/></dir><file name="letssyncro.phtml" hash="4453b8605c496c871e5fda587a8d248a"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="LetsSyncroLLC_Oct8ne.xml" hash="a30b4d627c1205c070328a415cbd2910"/></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="LetsSyncroLLC_Oct8ne.csv" hash="686df4107da7e35e243b629c5ee57963"/></dir><dir name="es_ES"><file name="LetsSyncroLLC_Oct8ne.csv" hash="eb0b3ddaae1e2e52005e9ab23cb37163"/></dir></dir></target><target name="mageskin"><dir name="frontend"><dir name="base"><dir name="default"><file name="oct8ne.css" hash="4255fddac8c054bbe32621cdccf844b8"/></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><file name="LetsSyncro_Logo.png" hash="2104af20cc380d0c745531e1dca2f97c"/></dir></dir></dir></dir></target></contents>
20
  <compatible/>
21
  <dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
22
  </package>