Version Notes
Added manual settings for Share/Favorite and My Cue links.
Download this release
Release Info
Developer | Cue Connect |
Extension | Cue |
Version | 3.0.5 |
Comparing to | |
See all releases |
Version 3.0.5
- app/code/community/CueConnect/Cue/Block/Adminhtml/Catalog/Product.php +30 -0
- app/code/community/CueConnect/Cue/Block/Adminhtml/Index.php +29 -0
- app/code/community/CueConnect/Cue/Block/Adminhtml/Progress.php +56 -0
- app/code/community/CueConnect/Cue/Block/Collection.php +30 -0
- app/code/community/CueConnect/Cue/Block/Favorite.php +29 -0
- app/code/community/CueConnect/Cue/Block/Js.php +39 -0
- app/code/community/CueConnect/Cue/Block/Share.php +29 -0
- app/code/community/CueConnect/Cue/Helper/Data.php +134 -0
- app/code/community/CueConnect/Cue/Model/.Inmarkit.php.swp +0 -0
- app/code/community/CueConnect/Cue/Model/CueConnect.php +297 -0
- app/code/community/CueConnect/Cue/Model/Demand.php +24 -0
- app/code/community/CueConnect/Cue/Model/Mysql4/Demand.php +18 -0
- app/code/community/CueConnect/Cue/Model/Mysql4/Demand/Collection.php +18 -0
- app/code/community/CueConnect/Cue/Model/Observer.php +175 -0
- app/code/community/CueConnect/Cue/Model/debug.export.log +2276 -0
- app/code/community/CueConnect/Cue/controllers/Adminhtml/SyncController.php +40 -0
- app/code/community/CueConnect/Cue/etc/config.xml +176 -0
- app/code/community/CueConnect/Cue/etc/system.xml +217 -0
- app/code/community/CueConnect/Cue/sql/cueconnect_setup/mysql4-install-1.0.0.php +15 -0
- app/design/adminhtml/default/default/layout/cueconnect.xml +10 -0
- app/design/adminhtml/default/default/template/cueconnect/index.phtml +71 -0
- app/design/adminhtml/default/default/template/cueconnect/index.phtml~ +71 -0
- app/design/adminhtml/default/default/template/cueconnect/progress.phtml +88 -0
- app/design/frontend/rwd/default/layout/cueconnect.xml +23 -0
- app/design/frontend/rwd/default/template/cueconnect/collection.phtml +6 -0
- app/design/frontend/rwd/default/template/cueconnect/favorite.phtml +4 -0
- app/design/frontend/rwd/default/template/cueconnect/js.phtml +19 -0
- app/design/frontend/rwd/default/template/cueconnect/share.phtml +3 -0
- app/etc/modules/CueConnect_Cue.xml +9 -0
- package.xml +20 -0
app/code/community/CueConnect/Cue/Block/Adminhtml/Catalog/Product.php
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* CueConnect_Cue
|
4 |
+
*
|
5 |
+
* @category CueConnect
|
6 |
+
* @package CueConnect_Cue
|
7 |
+
* @copyright Copyright (c) 2015 Cue Connect
|
8 |
+
* @author Cue Connect (http://www.cueconnect.com)
|
9 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
+
*/
|
11 |
+
|
12 |
+
class CueConnect_Cue_Block_Adminhtml_Catalog_Product extends Mage_Adminhtml_Block_Catalog_Product {
|
13 |
+
|
14 |
+
/**
|
15 |
+
* Prepare button and grid
|
16 |
+
*
|
17 |
+
* @return Mage_Adminhtml_Block_Catalog_Product
|
18 |
+
*/
|
19 |
+
protected function _prepareLayout()
|
20 |
+
{
|
21 |
+
$this->_addButton('cueconnect_sync_catalog', array(
|
22 |
+
'label' => Mage::helper('catalog')->__('Export catalog to Cue'),
|
23 |
+
'onclick' => "setLocation('{$this->getUrl('cueconnect/adminhtml_sync/export')}')",
|
24 |
+
'class' => ''
|
25 |
+
));
|
26 |
+
|
27 |
+
return parent::_prepareLayout();
|
28 |
+
}
|
29 |
+
|
30 |
+
}
|
app/code/community/CueConnect/Cue/Block/Adminhtml/Index.php
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* CueConnect_Cue
|
4 |
+
*
|
5 |
+
* @category CueConnect
|
6 |
+
* @package CueConnect_Cue
|
7 |
+
* @copyright Copyright (c) 2015 Cue Connect
|
8 |
+
* @author Cue Connect (http://www.cueconnect.com)
|
9 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
+
*/
|
11 |
+
|
12 |
+
class CueConnect_Cue_Block_Adminhtml_Index extends Mage_Adminhtml_Block_Template {
|
13 |
+
|
14 |
+
/**
|
15 |
+
* Get last export demands
|
16 |
+
*
|
17 |
+
* @return array
|
18 |
+
*/
|
19 |
+
protected function getDemands()
|
20 |
+
{
|
21 |
+
$demands = Mage::getModel('cueconnect/demand')
|
22 |
+
->getCollection()
|
23 |
+
->setOrder('updated_at', 'desc')
|
24 |
+
->setPageSize(10);
|
25 |
+
|
26 |
+
return $demands;
|
27 |
+
}
|
28 |
+
|
29 |
+
}
|
app/code/community/CueConnect/Cue/Block/Adminhtml/Progress.php
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* CueConnect_Cue
|
4 |
+
*
|
5 |
+
* @category CueConnect
|
6 |
+
* @package CueConnect_Cue
|
7 |
+
* @copyright Copyright (c) 2015 Cue Connect
|
8 |
+
* @author Cue Connect (http://www.cueconnect.com)
|
9 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
+
*/
|
11 |
+
|
12 |
+
class CueConnect_Cue_Block_Adminhtml_Progress extends Mage_Adminhtml_Block_Template {
|
13 |
+
|
14 |
+
/**
|
15 |
+
* Get last export progress
|
16 |
+
*
|
17 |
+
* @return array
|
18 |
+
*/
|
19 |
+
protected function getLastExportProgress()
|
20 |
+
{
|
21 |
+
// Get data
|
22 |
+
$last_export_progress = Mage::helper('cueconnect')->getExportProgress();
|
23 |
+
|
24 |
+
if ($last_export_progress && is_object($last_export_progress)) {
|
25 |
+
// Percentage
|
26 |
+
$last_export_progress->completion = 0;
|
27 |
+
if (isset($last_export_progress->total_products)) {
|
28 |
+
$total_to_do = $last_export_progress->total_products_to_create + $last_export_progress->total_products_to_update + $last_export_progress->total_products_to_delete;
|
29 |
+
$total_done = $last_export_progress->total_products_created + $last_export_progress->total_products_updated + $last_export_progress->total_products_deleted;
|
30 |
+
$last_export_progress->completion = ceil(($total_done / $total_to_do) * 100);
|
31 |
+
}
|
32 |
+
|
33 |
+
// Message
|
34 |
+
if (isset($last_export_progress->message) && $last_export_progress->message) {
|
35 |
+
$last_export_progress->message = $last_export_progress->message;
|
36 |
+
}
|
37 |
+
else {
|
38 |
+
if ($last_export_progress->completion == 0) {
|
39 |
+
$last_export_progress->message = "Starting...";
|
40 |
+
}
|
41 |
+
elseif ($last_export_progress->completion == 100) {
|
42 |
+
$last_export_progress->message = "Completed";
|
43 |
+
}
|
44 |
+
else {
|
45 |
+
$last_export_progress->message = "Progressing...";
|
46 |
+
}
|
47 |
+
}
|
48 |
+
|
49 |
+
return $last_export_progress;
|
50 |
+
}
|
51 |
+
else {
|
52 |
+
return false;
|
53 |
+
}
|
54 |
+
}
|
55 |
+
|
56 |
+
}
|
app/code/community/CueConnect/Cue/Block/Collection.php
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* CueConnect_Cue
|
4 |
+
*
|
5 |
+
* @category CueConnect
|
6 |
+
* @package CueConnect_Cue
|
7 |
+
* @copyright Copyright (c) 2015 Cue Connect
|
8 |
+
* @author Cue Connect (http://www.cueconnect.com)
|
9 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
+
*/
|
11 |
+
|
12 |
+
class CueConnect_Cue_Block_Collection extends Mage_Core_Block_Template {
|
13 |
+
|
14 |
+
public function isEnabled() {
|
15 |
+
$store = Mage::app()->getStore();
|
16 |
+
return $store->getConfig('cueconnect/enabled/enabled');
|
17 |
+
}
|
18 |
+
|
19 |
+
|
20 |
+
public function isCollectionEnabled() {
|
21 |
+
$store = Mage::app()->getStore();
|
22 |
+
if ($store->getConfig('cueconnect/collection/enabled') && $store->getConfig('cueconnect/collection/enabled')) {
|
23 |
+
return true;
|
24 |
+
}
|
25 |
+
else {
|
26 |
+
return false;
|
27 |
+
}
|
28 |
+
}
|
29 |
+
|
30 |
+
}
|
app/code/community/CueConnect/Cue/Block/Favorite.php
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* CueConnect_Cue
|
4 |
+
*
|
5 |
+
* @category CueConnect
|
6 |
+
* @package CueConnect_Cue
|
7 |
+
* @copyright Copyright (c) 2015 Cue Connect
|
8 |
+
* @author Cue Connect (http://www.cueconnect.com)
|
9 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
+
*/
|
11 |
+
|
12 |
+
class CueConnect_Cue_Block_Favorite extends Mage_Core_Block_Template {
|
13 |
+
|
14 |
+
public function isEnabled() {
|
15 |
+
$store = Mage::app()->getStore();
|
16 |
+
return $store->getConfig('cueconnect/enabled/enabled');
|
17 |
+
}
|
18 |
+
|
19 |
+
public function isFavoriteEnabled() {
|
20 |
+
$store = Mage::app()->getStore();
|
21 |
+
return $store->getConfig('cueconnect/favorite/enabled');
|
22 |
+
}
|
23 |
+
|
24 |
+
public function getSku() {
|
25 |
+
$current_product = Mage::registry('current_product');
|
26 |
+
return $current_product->getSku();
|
27 |
+
}
|
28 |
+
|
29 |
+
}
|
app/code/community/CueConnect/Cue/Block/Js.php
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* CueConnect_Cue
|
4 |
+
*
|
5 |
+
* @category CueConnect
|
6 |
+
* @package CueConnect_Cue
|
7 |
+
* @copyright Copyright (c) 2015 Cue Connect
|
8 |
+
* @author Cue Connect (http://www.cueconnect.com)
|
9 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
+
*/
|
11 |
+
|
12 |
+
class CueConnect_Cue_Block_Js extends Mage_Core_Block_Template {
|
13 |
+
|
14 |
+
public function isEnabled() {
|
15 |
+
$store = Mage::app()->getStore();
|
16 |
+
return $store->getConfig('cueconnect/enabled/enabled');
|
17 |
+
}
|
18 |
+
|
19 |
+
public function getRetailerId() {
|
20 |
+
$store = Mage::app()->getStore();
|
21 |
+
$retailer = Mage::helper('cueconnect')->getRetailer($store);
|
22 |
+
if ($retailer && $retailer->id) {
|
23 |
+
return $retailer->id;
|
24 |
+
}
|
25 |
+
}
|
26 |
+
|
27 |
+
public function getApiKey() {
|
28 |
+
$store = Mage::app()->getStore();
|
29 |
+
if ($store->getConfig('cueconnect/crendentials/api_key')) {
|
30 |
+
return $store->getConfig('cueconnect/crendentials/api_key');
|
31 |
+
}
|
32 |
+
else {
|
33 |
+
return "";
|
34 |
+
}
|
35 |
+
}
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
}
|
app/code/community/CueConnect/Cue/Block/Share.php
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* CueConnect_Cue
|
4 |
+
*
|
5 |
+
* @category CueConnect
|
6 |
+
* @package CueConnect_Cue
|
7 |
+
* @copyright Copyright (c) 2015 Cue Connect
|
8 |
+
* @author Cue Connect (http://www.cueconnect.com)
|
9 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
+
*/
|
11 |
+
|
12 |
+
class CueConnect_Cue_Block_Share extends Mage_Core_Block_Template {
|
13 |
+
|
14 |
+
public function isEnabled() {
|
15 |
+
$store = Mage::app()->getStore();
|
16 |
+
return $store->getConfig('cueconnect/enabled/enabled');
|
17 |
+
}
|
18 |
+
|
19 |
+
public function isObEnabled() {
|
20 |
+
$store = Mage::app()->getStore();
|
21 |
+
return $store->getConfig('cueconnect/ob/enabled');
|
22 |
+
}
|
23 |
+
|
24 |
+
public function getSku() {
|
25 |
+
$current_product = Mage::registry('current_product');
|
26 |
+
return $current_product->getSku();
|
27 |
+
}
|
28 |
+
|
29 |
+
}
|
app/code/community/CueConnect/Cue/Helper/Data.php
ADDED
@@ -0,0 +1,134 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* CueConnect_Cue
|
4 |
+
*
|
5 |
+
* @category CueConnect
|
6 |
+
* @package CueConnect_Cue
|
7 |
+
* @copyright Copyright (c) 2015 Cue Connect
|
8 |
+
* @author Cue Connect (http://www.cueconnect.com)
|
9 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
+
*/
|
11 |
+
|
12 |
+
class CueConnect_Cue_Helper_Data extends Mage_Core_Helper_Abstract
|
13 |
+
{
|
14 |
+
/**
|
15 |
+
* Get WSSE Header
|
16 |
+
*
|
17 |
+
* @return string
|
18 |
+
*/
|
19 |
+
public function getWsseHeader($login, $password) {
|
20 |
+
$authheader = sprintf('
|
21 |
+
<wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
|
22 |
+
<wsse:UsernameToken>
|
23 |
+
<wsse:Username>%s</wsse:Username>
|
24 |
+
<wsse:Password>%s</wsse:Password>
|
25 |
+
</wsse:UsernameToken>
|
26 |
+
</wsse:Security>
|
27 |
+
', htmlspecialchars($login), htmlspecialchars($password));
|
28 |
+
return $authheader;
|
29 |
+
}
|
30 |
+
|
31 |
+
/**
|
32 |
+
* Get webservice URL by service name
|
33 |
+
*
|
34 |
+
* @return string
|
35 |
+
*/
|
36 |
+
public function getWsUrl($service) {
|
37 |
+
return Mage::getStoreConfig('cueconnect/webservice/url').$service."?wsdl";
|
38 |
+
}
|
39 |
+
|
40 |
+
/**
|
41 |
+
* Get SOAP client by URL
|
42 |
+
*
|
43 |
+
* @return string
|
44 |
+
*/
|
45 |
+
public function getSoapClient($url, $login, $password) {
|
46 |
+
$client = new SOAPClient($url, array('trace' => 1, 'soap_version' => SOAP_1_1));
|
47 |
+
$authvars = new SoapVar($this->getWsseHeader($login, $password), XSD_ANYXML);
|
48 |
+
$header = new SoapHeader("http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd", "Security", $authvars);
|
49 |
+
$client->__setSoapHeaders($header);
|
50 |
+
return $client;
|
51 |
+
}
|
52 |
+
|
53 |
+
/**
|
54 |
+
* Get retailer object via SOAP
|
55 |
+
*
|
56 |
+
* @return string
|
57 |
+
*/
|
58 |
+
public function getRetailer($store) {
|
59 |
+
$soap_client = Mage::helper('cueconnect')->getSoapClient(
|
60 |
+
Mage::helper('cueconnect')->getWsUrl('place'),
|
61 |
+
$store->getConfig('cueconnect/credentials/login'),
|
62 |
+
$store->getConfig('cueconnect/credentials/password'));
|
63 |
+
try {
|
64 |
+
$result = $soap_client->get();
|
65 |
+
}
|
66 |
+
catch (Exception $e) {
|
67 |
+
return;
|
68 |
+
}
|
69 |
+
return $result->data;
|
70 |
+
}
|
71 |
+
|
72 |
+
/**
|
73 |
+
* Cut an array in multiple smaller array
|
74 |
+
*
|
75 |
+
* @return string
|
76 |
+
*/
|
77 |
+
public function getSlicesFromArray($data, $slice_size = 30) {
|
78 |
+
$slices = array();
|
79 |
+
if (count($data) > $slice_size) {
|
80 |
+
$i = 0;
|
81 |
+
while ($i < count($data)) {
|
82 |
+
if ($i % $slice_size == 0) {
|
83 |
+
$slices[] = array_slice($data, $i, $slice_size);
|
84 |
+
}
|
85 |
+
$i++;
|
86 |
+
}
|
87 |
+
}
|
88 |
+
else {
|
89 |
+
$slices[] = $data;
|
90 |
+
}
|
91 |
+
return $slices;
|
92 |
+
}
|
93 |
+
|
94 |
+
/**
|
95 |
+
* Log JSON data in Cue export log
|
96 |
+
*
|
97 |
+
* @return string
|
98 |
+
*/
|
99 |
+
public function logExportProgress($json) {
|
100 |
+
// Create folder
|
101 |
+
$cueconnect_var_dir = Mage::getBaseDir('var').'/cueconnect/';
|
102 |
+
if (!file_exists($cueconnect_var_dir)) {
|
103 |
+
mkdir($cueconnect_var_dir, 0777);
|
104 |
+
}
|
105 |
+
|
106 |
+
// Create log file
|
107 |
+
$cueconnect_import_log_file = $cueconnect_var_dir.'export.log';
|
108 |
+
|
109 |
+
// Log json in file
|
110 |
+
$file = fopen($cueconnect_import_log_file, "w+");
|
111 |
+
fwrite($file, $json);
|
112 |
+
fclose($file);
|
113 |
+
}
|
114 |
+
|
115 |
+
/**
|
116 |
+
* Get export log data
|
117 |
+
*
|
118 |
+
* @return string
|
119 |
+
*/
|
120 |
+
public function getExportProgress() {
|
121 |
+
// File path
|
122 |
+
$cueconnect_var_dir = Mage::getBaseDir('var').'/cueconnect/';
|
123 |
+
$cueconnect_import_log_file = $cueconnect_var_dir.'export.log';
|
124 |
+
if (file_exists($cueconnect_import_log_file)) {
|
125 |
+
// Read file
|
126 |
+
$file = fopen($cueconnect_import_log_file, "r");
|
127 |
+
$data = fread($file, 100000);
|
128 |
+
fclose($file);
|
129 |
+
|
130 |
+
// Return decoded data
|
131 |
+
return json_decode($data);
|
132 |
+
}
|
133 |
+
}
|
134 |
+
}
|
app/code/community/CueConnect/Cue/Model/.Inmarkit.php.swp
ADDED
Binary file
|
app/code/community/CueConnect/Cue/Model/CueConnect.php
ADDED
@@ -0,0 +1,297 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* CueConnect_Cue
|
4 |
+
*
|
5 |
+
* @category CueConnect
|
6 |
+
* @package CueConnect_Cue
|
7 |
+
* @copyright Copyright (c) 2015 Cue Connect
|
8 |
+
* @author Cue Connect (http://www.cueconnect.com)
|
9 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
+
*/
|
11 |
+
|
12 |
+
class CueConnect_Cue_Model_CueConnect extends Mage_Core_Model_Abstract
|
13 |
+
{
|
14 |
+
/**
|
15 |
+
* Construct
|
16 |
+
*/
|
17 |
+
public function _construct() {
|
18 |
+
$this->_init('cueconnect/cueconnect');
|
19 |
+
}
|
20 |
+
|
21 |
+
/**
|
22 |
+
* Execute export and put result in message box
|
23 |
+
*/
|
24 |
+
public static function dailyExport() {
|
25 |
+
if (Mage::getStoreConfig('cueconnect/cron/enabled')) {
|
26 |
+
// Execute export() for each stores
|
27 |
+
foreach (Mage::app()->getStores() as $store) {
|
28 |
+
if ($store->getConfig('cueconnect/enabled/enabled')) {
|
29 |
+
// Export
|
30 |
+
$result = self::export($store);
|
31 |
+
|
32 |
+
// Notification
|
33 |
+
$inbox = Mage::getModel('adminnotification/inbox');
|
34 |
+
if ($result['success']) {
|
35 |
+
$inbox->addNotice(sprintf("%s products has been successfully synced with Cue.", $store->getName()), $result['message']);
|
36 |
+
}
|
37 |
+
else {
|
38 |
+
$inbox->addCritical(sprintf("%s products has not been successfully synced with Cue.", $store->getName()), $result['message']);
|
39 |
+
}
|
40 |
+
}
|
41 |
+
}
|
42 |
+
}
|
43 |
+
}
|
44 |
+
|
45 |
+
/**
|
46 |
+
* Execute export if manually asked and put result in message box
|
47 |
+
*/
|
48 |
+
public static function manualExport() {
|
49 |
+
// Check for demands
|
50 |
+
$demand = Mage::getModel('cueconnect/demand');
|
51 |
+
$awaiting_demands = Mage::getModel('cueconnect/demand')
|
52 |
+
->getCollection()
|
53 |
+
->addFilter('status', $demand::STATUS_WAITING);
|
54 |
+
|
55 |
+
if (count($awaiting_demands)) {
|
56 |
+
// Update demands
|
57 |
+
foreach ($awaiting_demands as $awaiting_demand) {
|
58 |
+
$awaiting_demand->setStatus($demand::STATUS_PROGRESSING);
|
59 |
+
$awaiting_demand->setUpdatedAt(date('Y-m-d H:i:s'));
|
60 |
+
$awaiting_demand->save();
|
61 |
+
}
|
62 |
+
|
63 |
+
// Execute export() for each stores
|
64 |
+
foreach (Mage::app()->getStores() as $store) {
|
65 |
+
if ($store->getConfig('cueconnect/enabled/enabled')) {
|
66 |
+
// Export
|
67 |
+
$result = self::export($store);
|
68 |
+
|
69 |
+
// Log
|
70 |
+
$log = $result['log'];
|
71 |
+
$log['end_at'] = date('Y-m-d H:i:s');
|
72 |
+
|
73 |
+
// Notification
|
74 |
+
$inbox = Mage::getModel('adminnotification/inbox');
|
75 |
+
if ($result['success']) {
|
76 |
+
$inbox->addNotice(sprintf("%s products has been successfully synced with Cue.", $store->getName()), $result['message']);
|
77 |
+
}
|
78 |
+
else {
|
79 |
+
$inbox->addCritical(sprintf("%s products has not been successfully synced with Cue.", $store->getName()), $result['message']);
|
80 |
+
$log['status'] = 'error';
|
81 |
+
}
|
82 |
+
|
83 |
+
Mage::helper('cueconnect')->logExportProgress(json_encode($log));
|
84 |
+
}
|
85 |
+
}
|
86 |
+
|
87 |
+
// Update demands
|
88 |
+
foreach ($awaiting_demands as $awaiting_demand) {
|
89 |
+
$awaiting_demand->setStatus($demand::STATUS_DONE);
|
90 |
+
$awaiting_demand->setUpdatedAt(date('Y-m-d H:i:s'));
|
91 |
+
$awaiting_demand->save();
|
92 |
+
}
|
93 |
+
}
|
94 |
+
}
|
95 |
+
|
96 |
+
/**
|
97 |
+
* Export catalog products to Cue
|
98 |
+
*/
|
99 |
+
public static function export($store) {
|
100 |
+
// Log
|
101 |
+
$log = array();
|
102 |
+
$log['started_at'] = date('Y-m-d H:i:s');
|
103 |
+
$log['status'] = "progressing";
|
104 |
+
$log['store'] = $store->getName();
|
105 |
+
Mage::helper('cueconnect')->logExportProgress(json_encode($log));
|
106 |
+
|
107 |
+
// Check if crententials has been filled
|
108 |
+
if (!$store->getConfig('cueconnect/credentials/login') || !$store->getConfig('cueconnect/credentials/password')) {
|
109 |
+
$message = "Cue credentials are not filled.";
|
110 |
+
return array('success' => false, 'message' => $message, 'log' => $log);
|
111 |
+
}
|
112 |
+
|
113 |
+
// Retailuser WS
|
114 |
+
$soap_client = Mage::helper('cueconnect')->getSoapClient(
|
115 |
+
Mage::helper('cueconnect')->getWsUrl('retailuser'),
|
116 |
+
$store->getConfig('cueconnect/credentials/login'),
|
117 |
+
$store->getConfig('cueconnect/credentials/password')
|
118 |
+
);
|
119 |
+
|
120 |
+
// Get place ID
|
121 |
+
$place_id = null;
|
122 |
+
try {
|
123 |
+
$result = $soap_client->get(array(
|
124 |
+
'email' => $store->getConfig('cueconnect/credentials/login')
|
125 |
+
));
|
126 |
+
$place_id = $result->data->id;
|
127 |
+
}
|
128 |
+
catch (Exception $e) {
|
129 |
+
$message = $e->getMessage();
|
130 |
+
return array('success' => false, 'message' => $message, 'log' => $log);
|
131 |
+
}
|
132 |
+
|
133 |
+
// Product WS
|
134 |
+
$soap_client = Mage::helper('cueconnect')->getSoapClient(
|
135 |
+
Mage::helper('cueconnect')->getWsUrl('product'),
|
136 |
+
$store->getConfig('cueconnect/credentials/login'),
|
137 |
+
$store->getConfig('cueconnect/credentials/password')
|
138 |
+
);
|
139 |
+
|
140 |
+
// Get Cue Catalog
|
141 |
+
$cueconnect_products = array();
|
142 |
+
$results = $soap_client->get(array('page' => 1, 'pagesize' => 100000, 'clipped' => false));
|
143 |
+
foreach ($results->data as $result) {
|
144 |
+
if ($result->sku) {
|
145 |
+
$cueconnect_products[$result->sku] = $result;
|
146 |
+
}
|
147 |
+
}
|
148 |
+
|
149 |
+
// Catalog products
|
150 |
+
$catalog_products = Mage::getModel('catalog/product')
|
151 |
+
->getCollection()
|
152 |
+
->addAttributeToSelect('name')
|
153 |
+
->addAttributeToSelect('description')
|
154 |
+
->addAttributeToSelect('price')
|
155 |
+
->addAttributeToSelect('image')
|
156 |
+
->addAttributeToSelect('url_path')
|
157 |
+
->addStoreFilter($store->getId());
|
158 |
+
$catalog_products_skus = array();
|
159 |
+
$new_data = array();
|
160 |
+
$updated_data = array();
|
161 |
+
foreach ($catalog_products as $catalog_product) {
|
162 |
+
$catalog_products_skus[] = $catalog_product->getSku();
|
163 |
+
|
164 |
+
// Product image
|
165 |
+
$icon = "http://www.cueconnect.com/images/no_image.gif";
|
166 |
+
if ($catalog_product->getData('image')) {
|
167 |
+
$icon = $catalog_product->getMediaConfig()->getMediaUrl($catalog_product->getData('image'));
|
168 |
+
}
|
169 |
+
|
170 |
+
// Product URL
|
171 |
+
$url = $store->getBaseUrl(Mage_Core_Model_Store::URL_TYPE_LINK).$catalog_product->getUrlPath();
|
172 |
+
|
173 |
+
// Check if product exists in Cue database
|
174 |
+
if (in_array($catalog_product->getSku(), array_keys($cueconnect_products))) {
|
175 |
+
$updated_data[] = array(
|
176 |
+
'product_imic' => null,
|
177 |
+
'sku' => $catalog_product->getSku(),
|
178 |
+
'name' => $catalog_product->getName(),
|
179 |
+
'description' => $catalog_product->getDescription(),
|
180 |
+
'sms_name' => $catalog_product->getName(),
|
181 |
+
'sms_desc' => $catalog_product->getDescription(),
|
182 |
+
'url' => $url,
|
183 |
+
'taxonomy_id' => Mage::getStoreConfig('cueconnect/taxomomy_id'),
|
184 |
+
'icon' => $icon,
|
185 |
+
'live' => '1',
|
186 |
+
'price' => $catalog_product->getPrice()
|
187 |
+
);
|
188 |
+
}
|
189 |
+
else {
|
190 |
+
$new_data[] = array(
|
191 |
+
'sku' => $catalog_product->getSku(),
|
192 |
+
'upc' => uniqid(),
|
193 |
+
'name' => $catalog_product->getName(),
|
194 |
+
'description' => $catalog_product->getDescription(),
|
195 |
+
'sms_name' => $catalog_product->getName(),
|
196 |
+
'sms_desc' => $catalog_product->getDescription(),
|
197 |
+
'url' => $url,
|
198 |
+
'taxonomy_id' => Mage::getStoreConfig('cueconnect/taxomomy_id'),
|
199 |
+
'icon' => $icon,
|
200 |
+
'live' => '1',
|
201 |
+
'price' => $catalog_product->getPrice()
|
202 |
+
);
|
203 |
+
}
|
204 |
+
}
|
205 |
+
// Product to delete
|
206 |
+
$skus_to_delete = array_diff(array_keys($cueconnect_products), $catalog_products_skus);
|
207 |
+
$imics_to_delete = array();
|
208 |
+
foreach ($skus_to_delete as $sku_to_delete) {
|
209 |
+
$imics_to_delete[] = $cueconnect_products[$sku_to_delete]->product_imic;
|
210 |
+
}
|
211 |
+
|
212 |
+
// Log
|
213 |
+
$log['total_products'] = count($catalog_products);
|
214 |
+
$log['total_products_to_create'] = count($new_data);
|
215 |
+
$log['total_products_to_update'] = count($updated_data);
|
216 |
+
$log['total_products_to_delete'] = count($imics_to_delete);
|
217 |
+
$log['total_products_created'] = 0;
|
218 |
+
$log['total_products_updated'] = 0;
|
219 |
+
$log['total_products_deleted'] = 0;
|
220 |
+
Mage::helper('cueconnect')->logExportProgress(json_encode($log));
|
221 |
+
|
222 |
+
// Send new data data to Cue (per slices)
|
223 |
+
if (count($new_data)) {
|
224 |
+
$new_data_slices = Mage::helper('cueconnect')->getSlicesFromArray($new_data, 20);
|
225 |
+
foreach ($new_data_slices as $new_data_slice) {
|
226 |
+
try {
|
227 |
+
$soap_client->create(array(
|
228 |
+
'place_id' => $place_id,
|
229 |
+
'data' => $new_data_slice,
|
230 |
+
'count' => count($new_data_slice)
|
231 |
+
));
|
232 |
+
// Log
|
233 |
+
$log['total_products_created'] = $log['total_products_created'] + count($new_data_slice);
|
234 |
+
Mage::helper('cueconnect')->logExportProgress(json_encode($log));
|
235 |
+
}
|
236 |
+
catch (Exception $e) {
|
237 |
+
return array('success' => false, 'message' => $e->getMessage(), 'log' => $log);
|
238 |
+
}
|
239 |
+
}
|
240 |
+
}
|
241 |
+
|
242 |
+
// Send updated data data to Cue (per slices)
|
243 |
+
if (count($updated_data)) {
|
244 |
+
$updated_data_slices = Mage::helper('cueconnect')->getSlicesFromArray($updated_data, 20);
|
245 |
+
foreach ($updated_data_slices as $updated_data_slice) {
|
246 |
+
try {
|
247 |
+
$soap_client->set(array(
|
248 |
+
'place_id' => $place_id,
|
249 |
+
'data' => $updated_data_slice,
|
250 |
+
'count' => count($updated_data_slice)
|
251 |
+
));
|
252 |
+
// Log
|
253 |
+
$log['total_products_updated'] = $log['total_products_updated'] + count($updated_data_slice);
|
254 |
+
Mage::helper('cueconnect')->logExportProgress(json_encode($log));
|
255 |
+
}
|
256 |
+
catch (Exception $e) {
|
257 |
+
return array('success' => false, 'message' => $e->getMessage(), 'log' => $log);
|
258 |
+
}
|
259 |
+
}
|
260 |
+
}
|
261 |
+
|
262 |
+
// Delete products which are not in the Magento catalog anymore
|
263 |
+
if (count($imics_to_delete)) {
|
264 |
+
$imics_to_delete_slices = Mage::helper('cueconnect')->getSlicesFromArray($imics_to_delete, 50);
|
265 |
+
foreach ($imics_to_delete_slices as $imics_to_delete_slice) {
|
266 |
+
try {
|
267 |
+
$soap_client->delete(array(
|
268 |
+
'place_id' => $place_id,
|
269 |
+
'data' => $imics_to_delete_slice,
|
270 |
+
'count' => count($imics_to_delete_slice)
|
271 |
+
));
|
272 |
+
// Log
|
273 |
+
$log['total_products_deleted'] = $log['total_products_deleted'] + count($imics_to_delete_slice);
|
274 |
+
Mage::helper('cueconnect')->logExportProgress(json_encode($log));
|
275 |
+
}
|
276 |
+
catch (Exception $e) {
|
277 |
+
return array('success' => false, 'message' => $e->getMessage(), 'log' => $log);
|
278 |
+
}
|
279 |
+
}
|
280 |
+
}
|
281 |
+
|
282 |
+
// Log
|
283 |
+
$log['end_at'] = date('Y-m-d H:i:s');
|
284 |
+
$log['status'] = "done";
|
285 |
+
Mage::helper('cueconnect')->logExportProgress(json_encode($log));
|
286 |
+
|
287 |
+
// Return
|
288 |
+
return array(
|
289 |
+
'success' => true,
|
290 |
+
'created_count' => count($new_data),
|
291 |
+
'updated_count' => count($updated_data),
|
292 |
+
'deleted_count' => count($imics_to_delete),
|
293 |
+
'message' => sprintf("%s product(s) has been created. %s product(s) has been updated. %s product(s) has been deleted.", count($new_data), count($updated_data), count($imics_to_delete)),
|
294 |
+
'log' => $log
|
295 |
+
);
|
296 |
+
}
|
297 |
+
}
|
app/code/community/CueConnect/Cue/Model/Demand.php
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* CueConnect_Cue
|
4 |
+
*
|
5 |
+
* @category CueConnect
|
6 |
+
* @package CueConnect_Cue
|
7 |
+
* @copyright Copyright (c) 2015 Cue Connect
|
8 |
+
* @author Cue Connect (http://www.cueconnect.com)
|
9 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
+
*/
|
11 |
+
|
12 |
+
class CueConnect_Cue_Model_Demand extends Mage_Core_Model_Abstract
|
13 |
+
{
|
14 |
+
const STATUS_WAITING = 1;
|
15 |
+
const STATUS_PROGRESSING = 2;
|
16 |
+
const STATUS_DONE = 3;
|
17 |
+
const STATUS_ERROR = 4;
|
18 |
+
|
19 |
+
public function _construct()
|
20 |
+
{
|
21 |
+
parent::_construct();
|
22 |
+
$this->_init('cueconnect/demand');
|
23 |
+
}
|
24 |
+
}
|
app/code/community/CueConnect/Cue/Model/Mysql4/Demand.php
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* CueConnect_Cue
|
4 |
+
*
|
5 |
+
* @category CueConnect
|
6 |
+
* @package CueConnect_Cue
|
7 |
+
* @copyright Copyright (c) 2015 Cue Connect
|
8 |
+
* @author Cue Connect (http://www.cueconnect.com)
|
9 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
+
*/
|
11 |
+
|
12 |
+
class CueConnect_Cue_Model_Mysql4_Demand extends Mage_Core_Model_Mysql4_Abstract
|
13 |
+
{
|
14 |
+
public function _construct()
|
15 |
+
{
|
16 |
+
$this->_init('cueconnect/demand', 'id');
|
17 |
+
}
|
18 |
+
}
|
app/code/community/CueConnect/Cue/Model/Mysql4/Demand/Collection.php
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* CueConnect_Cue
|
4 |
+
*
|
5 |
+
* @category CueConnect
|
6 |
+
* @package CueConnect_Cue
|
7 |
+
* @copyright Copyright (c) 2015 Cue Connect
|
8 |
+
* @author Cue Connect (http://www.cueconnect.com)
|
9 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
+
*/
|
11 |
+
|
12 |
+
class CueConnect_Cue_Model_Mysql4_Demand_Collection extends Mage_Core_Model_Mysql4_Collection_Abstract
|
13 |
+
{
|
14 |
+
public function _construct()
|
15 |
+
{
|
16 |
+
$this->_init('cueconnect/demand');
|
17 |
+
}
|
18 |
+
}
|
app/code/community/CueConnect/Cue/Model/Observer.php
ADDED
@@ -0,0 +1,175 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* CueConnect_Cue
|
4 |
+
*
|
5 |
+
* @category CueConnect
|
6 |
+
* @package CueConnect_Cue
|
7 |
+
* @copyright Copyright (c) 2015 Cue Connect
|
8 |
+
* @author Cue Connect (http://www.cueconnect.com)
|
9 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
+
*/
|
11 |
+
|
12 |
+
class CueConnect_Cue_Model_Observer
|
13 |
+
{
|
14 |
+
public function updateProduct(Varien_Event_Observer $observer)
|
15 |
+
{
|
16 |
+
// Get catalog product
|
17 |
+
$catalog_product = $observer->getEvent()->getProduct();
|
18 |
+
|
19 |
+
// For each related stores
|
20 |
+
foreach ($catalog_product->getStoreIds() as $store_id) {
|
21 |
+
// Get store
|
22 |
+
$store = Mage::getModel('core/store')->load($store_id);
|
23 |
+
if ($store->getConfig('cueconnect/enabled/enabled')) {
|
24 |
+
// Retailuser SOAP client
|
25 |
+
$soap_client = Mage::helper('cueconnect')->getSoapClient(
|
26 |
+
Mage::helper('cueconnect')->getWsUrl('retailuser'),
|
27 |
+
$store->getConfig('cueconnect/credentials/login'),
|
28 |
+
$store->getConfig('cueconnect/credentials/password')
|
29 |
+
);
|
30 |
+
|
31 |
+
// Get place ID
|
32 |
+
$place_id = null;
|
33 |
+
try {
|
34 |
+
$result = $soap_client->get(array(
|
35 |
+
'email' => $store->getConfig('cueconnect/credentials/login')
|
36 |
+
));
|
37 |
+
$place_id = $result->data->id;
|
38 |
+
}
|
39 |
+
catch (Exception $e) {
|
40 |
+
Mage::log($e->getMessage());
|
41 |
+
}
|
42 |
+
|
43 |
+
if ($place_id) {
|
44 |
+
// Product SOAP client
|
45 |
+
$soap_client = Mage::helper('cueconnect')->getSoapClient(
|
46 |
+
Mage::helper('cueconnect')->getWsUrl('product'),
|
47 |
+
$store->getConfig('cueconnect/credentials/login'),
|
48 |
+
$store->getConfig('cueconnect/credentials/password')
|
49 |
+
);
|
50 |
+
|
51 |
+
// Product icon
|
52 |
+
$icon = "http://www.cueconnect.com/images/no_image.gif";
|
53 |
+
if ($catalog_product->getData('image')) {
|
54 |
+
$icon = $catalog_product->getMediaConfig()->getMediaUrl($catalog_product->getData('image'));
|
55 |
+
}
|
56 |
+
|
57 |
+
// Get product and update/create product
|
58 |
+
try {
|
59 |
+
$result = $soap_client->get(array(
|
60 |
+
'place_id' => $place_id,
|
61 |
+
'sku' => $catalog_product->getSku(),
|
62 |
+
'page' => 1,
|
63 |
+
'page_size' => 1
|
64 |
+
));
|
65 |
+
if ($result && isset($result->data) && isset($result->data[0]) && isset($result->inpagecount) && $result->inpagecount) {
|
66 |
+
$cueconnect_product = $result->data[0];
|
67 |
+
$data = array(
|
68 |
+
'product_imic' => null,
|
69 |
+
'sku' => $catalog_product->getSku(),
|
70 |
+
'name' => $catalog_product->getName(),
|
71 |
+
'description' => $catalog_product->getDescription(),
|
72 |
+
'sms_name' => $catalog_product->getName(),
|
73 |
+
'sms_desc' => $catalog_product->getDescription(),
|
74 |
+
'url' => $catalog_product->getProductUrl(),
|
75 |
+
'taxonomy_id' => Mage::getStoreConfig('cueconnect/taxomomy_id'),
|
76 |
+
'icon' => $icon,
|
77 |
+
'live' => '1',
|
78 |
+
'price' => $catalog_product->getPrice()
|
79 |
+
);
|
80 |
+
$soap_client->set(array(
|
81 |
+
'place_id' => $place_id,
|
82 |
+
'data' => array(0 => $data),
|
83 |
+
'count' => 1
|
84 |
+
));
|
85 |
+
}
|
86 |
+
else {
|
87 |
+
$data = array(
|
88 |
+
'sku' => $catalog_product->getSku(),
|
89 |
+
'upc' => uniqid(),
|
90 |
+
'name' => $catalog_product->getName(),
|
91 |
+
'description' => $catalog_product->getDescription(),
|
92 |
+
'sms_name' => $catalog_product->getName(),
|
93 |
+
'sms_desc' => $catalog_product->getDescription(),
|
94 |
+
'url' => $catalog_product->getProductUrl(),
|
95 |
+
'taxonomy_id' => Mage::getStoreConfig('cueconnect/taxomomy_id'),
|
96 |
+
'icon' => $icon,
|
97 |
+
'live' => '1',
|
98 |
+
'price' => $catalog_product->getPrice()
|
99 |
+
);
|
100 |
+
$soap_client->create(array(
|
101 |
+
'place_id' => $place_id,
|
102 |
+
'data' => array(0 => $data),
|
103 |
+
'count' => 1
|
104 |
+
));
|
105 |
+
}
|
106 |
+
}
|
107 |
+
catch (Exception $e) {
|
108 |
+
Mage::log($e->getMessage());
|
109 |
+
}
|
110 |
+
}
|
111 |
+
}
|
112 |
+
}
|
113 |
+
}
|
114 |
+
|
115 |
+
public function deleteProduct(Varien_Event_Observer $observer)
|
116 |
+
{
|
117 |
+
// Get catalog product
|
118 |
+
$catalog_product = $observer->getEvent()->getProduct();
|
119 |
+
|
120 |
+
// For each related stores
|
121 |
+
foreach ($catalog_product->getStoreIds() as $store_id) {
|
122 |
+
// Get store
|
123 |
+
$store = Mage::getModel('core/store')->load($store_id);
|
124 |
+
if ($store->getConfig('cueconnect/enabled/enabled')) {
|
125 |
+
// Retailuser SOAP client
|
126 |
+
$soap_client = Mage::helper('cueconnect')->getSoapClient(
|
127 |
+
Mage::helper('cueconnect')->getWsUrl('retailuser'),
|
128 |
+
$store->getConfig('cueconnect/credentials/login'),
|
129 |
+
$store->getConfig('cueconnect/credentials/password')
|
130 |
+
);
|
131 |
+
|
132 |
+
// Get place ID
|
133 |
+
$place_id = null;
|
134 |
+
try {
|
135 |
+
$result = $soap_client->get(array(
|
136 |
+
'email' => $store->getConfig('cueconnect/credentials/login')
|
137 |
+
));
|
138 |
+
$place_id = $result->data->id;
|
139 |
+
}
|
140 |
+
catch (Exception $e) {
|
141 |
+
Mage::log($e->getMessage());
|
142 |
+
}
|
143 |
+
|
144 |
+
// Product SOAP client
|
145 |
+
$soap_client = Mage::helper('cueconnect')->getSoapClient(
|
146 |
+
Mage::helper('cueconnect')->getWsUrl('product'),
|
147 |
+
$store->getConfig('cueconnect/credentials/login'),
|
148 |
+
$store->getConfig('cueconnect/credentials/password')
|
149 |
+
);
|
150 |
+
|
151 |
+
// Get and delete Cue Connect product
|
152 |
+
try {
|
153 |
+
$result = $soap_client->get(array(
|
154 |
+
'place_id' => $place_id,
|
155 |
+
'sku' => $catalog_product->getSku(),
|
156 |
+
'page' => 1,
|
157 |
+
'page_size' => 1
|
158 |
+
));
|
159 |
+
if ($result && isset($result->data) && isset($result->data[0]) && isset($result->inpagecount) && $result->inpagecount) {
|
160 |
+
$cueconnect_product = $result->data[0];
|
161 |
+
$result = $soap_client->delete(array(
|
162 |
+
'place_id' => $place_id,
|
163 |
+
'data' => array($cueconnect_product->product_imic),
|
164 |
+
'count' => 1
|
165 |
+
));
|
166 |
+
}
|
167 |
+
}
|
168 |
+
catch (Exception $e) {
|
169 |
+
Mage::log($e->getMessage());
|
170 |
+
}
|
171 |
+
}
|
172 |
+
}
|
173 |
+
}
|
174 |
+
|
175 |
+
}
|
app/code/community/CueConnect/Cue/Model/debug.export.log
ADDED
@@ -0,0 +1,2276 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
place id = 4
|
2 |
+
product sku n2610
|
3 |
+
product: new
|
4 |
+
product sku bb8100
|
5 |
+
product: new
|
6 |
+
product sku sw810i
|
7 |
+
product: new
|
8 |
+
product sku 8525PDA
|
9 |
+
product: new
|
10 |
+
product sku MM-A900M
|
11 |
+
product: new
|
12 |
+
product sku MA464LL/A
|
13 |
+
product: new
|
14 |
+
product sku LX.FR206.001
|
15 |
+
product: new
|
16 |
+
product sku VGN-TXN27N/B
|
17 |
+
product: new
|
18 |
+
product sku M285-E
|
19 |
+
product: new
|
20 |
+
product sku cn_3
|
21 |
+
product: new
|
22 |
+
product sku asc_8
|
23 |
+
product: new
|
24 |
+
product sku steve_4
|
25 |
+
product: new
|
26 |
+
product sku nine_3
|
27 |
+
product: new
|
28 |
+
product sku ecco_3
|
29 |
+
product: new
|
30 |
+
product sku ken_8
|
31 |
+
product: new
|
32 |
+
product sku coal_sm
|
33 |
+
product: new
|
34 |
+
product sku ink_sm
|
35 |
+
product: new
|
36 |
+
product sku oc_sm
|
37 |
+
product: new
|
38 |
+
product sku zol_r_sm
|
39 |
+
product: new
|
40 |
+
product sku 4fasd5f5
|
41 |
+
product: new
|
42 |
+
product sku 384822
|
43 |
+
product: new
|
44 |
+
product sku bar1234
|
45 |
+
product: new
|
46 |
+
product sku Rebel XT
|
47 |
+
product: new
|
48 |
+
product sku QC-2185
|
49 |
+
product: new
|
50 |
+
product sku 750
|
51 |
+
product: new
|
52 |
+
product sku A630
|
53 |
+
product: new
|
54 |
+
product sku C530
|
55 |
+
product: new
|
56 |
+
product sku ana_9
|
57 |
+
product: new
|
58 |
+
product sku 1111
|
59 |
+
product: new
|
60 |
+
product sku 1112
|
61 |
+
product: new
|
62 |
+
product sku 1113
|
63 |
+
product: new
|
64 |
+
product sku 1114
|
65 |
+
product: new
|
66 |
+
product sku ana_3
|
67 |
+
product: new
|
68 |
+
product sku ana_4
|
69 |
+
product: new
|
70 |
+
product sku ana_5
|
71 |
+
product: new
|
72 |
+
product sku ana_6
|
73 |
+
product: new
|
74 |
+
product sku ana_7
|
75 |
+
product: new
|
76 |
+
product sku ana_8
|
77 |
+
product: new
|
78 |
+
product sku cn
|
79 |
+
product: new
|
80 |
+
product sku cn_4
|
81 |
+
product: new
|
82 |
+
product sku cn_5
|
83 |
+
product: new
|
84 |
+
product sku cn_6
|
85 |
+
product: new
|
86 |
+
product sku cn_7
|
87 |
+
product: new
|
88 |
+
product sku cn_m8
|
89 |
+
product: new
|
90 |
+
product sku cn_m9
|
91 |
+
product: new
|
92 |
+
product sku cn_m10
|
93 |
+
product: new
|
94 |
+
product sku cn_m11
|
95 |
+
product: new
|
96 |
+
product sku cn_m12
|
97 |
+
product: new
|
98 |
+
product sku asc
|
99 |
+
product: new
|
100 |
+
product sku asc_9
|
101 |
+
product: new
|
102 |
+
product sku asc_10
|
103 |
+
product: new
|
104 |
+
product sku asc_11
|
105 |
+
product: new
|
106 |
+
product sku asc_12
|
107 |
+
product: new
|
108 |
+
product sku ken
|
109 |
+
product: new
|
110 |
+
product sku ken_9
|
111 |
+
product: new
|
112 |
+
product sku ken_10
|
113 |
+
product: new
|
114 |
+
product sku ken_11
|
115 |
+
product: new
|
116 |
+
product sku ken_12
|
117 |
+
product: new
|
118 |
+
product sku steve
|
119 |
+
product: new
|
120 |
+
product sku steve_5
|
121 |
+
product: new
|
122 |
+
product sku steve_6
|
123 |
+
product: new
|
124 |
+
product sku steve_7
|
125 |
+
product: new
|
126 |
+
product sku steve_8
|
127 |
+
product: new
|
128 |
+
product sku nine
|
129 |
+
product: new
|
130 |
+
product sku nine_4
|
131 |
+
product: new
|
132 |
+
product sku nine_5
|
133 |
+
product: new
|
134 |
+
product sku nine_6
|
135 |
+
product: new
|
136 |
+
product sku ecco
|
137 |
+
product: new
|
138 |
+
product sku ecco_4
|
139 |
+
product: new
|
140 |
+
product sku ecco_5
|
141 |
+
product: new
|
142 |
+
product sku ecco_6
|
143 |
+
product: new
|
144 |
+
product sku coal_md
|
145 |
+
product: new
|
146 |
+
product sku coal_lrg
|
147 |
+
product: new
|
148 |
+
product sku coal_1
|
149 |
+
product: new
|
150 |
+
product sku ink
|
151 |
+
product: new
|
152 |
+
product sku ink_med
|
153 |
+
product: new
|
154 |
+
product sku ink_lrg
|
155 |
+
product: new
|
156 |
+
product sku oc
|
157 |
+
product: new
|
158 |
+
product sku oc_med
|
159 |
+
product: new
|
160 |
+
product sku oc_lrg
|
161 |
+
product: new
|
162 |
+
product sku zol
|
163 |
+
product: new
|
164 |
+
product sku zol_g_sm
|
165 |
+
product: new
|
166 |
+
product sku zol_r_med
|
167 |
+
product: new
|
168 |
+
product sku zol_g_med
|
169 |
+
product: new
|
170 |
+
product sku zol_r_lrg
|
171 |
+
product: new
|
172 |
+
product sku zol_g_lrg
|
173 |
+
product: new
|
174 |
+
product sku ac674
|
175 |
+
product: new
|
176 |
+
product sku ac9003
|
177 |
+
product: new
|
178 |
+
product sku ac-66332
|
179 |
+
product: new
|
180 |
+
product sku ana
|
181 |
+
product: new
|
182 |
+
product sku zol_b_med
|
183 |
+
product: new
|
184 |
+
product sku apevia-black
|
185 |
+
product: new
|
186 |
+
product sku nzxtlexa
|
187 |
+
product: new
|
188 |
+
product sku 2gbdimm
|
189 |
+
product: new
|
190 |
+
product sku 1gbdimm
|
191 |
+
product: new
|
192 |
+
product sku 1yr_p_l
|
193 |
+
product: new
|
194 |
+
product sku 512dimm
|
195 |
+
product: new
|
196 |
+
product sku 2yr_p_l
|
197 |
+
product: new
|
198 |
+
product sku amdphenom
|
199 |
+
product: new
|
200 |
+
product sku 3yr_p_l
|
201 |
+
product: new
|
202 |
+
product sku 226bw
|
203 |
+
product: new
|
204 |
+
product sku amda64
|
205 |
+
product: new
|
206 |
+
product sku 1tb7200
|
207 |
+
product: new
|
208 |
+
product sku 500gb7200
|
209 |
+
product: new
|
210 |
+
product sku intelc2d
|
211 |
+
product: new
|
212 |
+
product sku W2452T-TF
|
213 |
+
product: new
|
214 |
+
product sku intelcore2extreme
|
215 |
+
product: new
|
216 |
+
product sku 500gb5400
|
217 |
+
product: new
|
218 |
+
product sku 250gb5400
|
219 |
+
product: new
|
220 |
+
product sku W1952TQ-TF
|
221 |
+
product: new
|
222 |
+
product sku M9179LL
|
223 |
+
product: new
|
224 |
+
product sku VGN-TXN27N/BW
|
225 |
+
product: new
|
226 |
+
product sku microsoftnatural
|
227 |
+
product: new
|
228 |
+
product sku logitechcord
|
229 |
+
product: new
|
230 |
+
product sku logidinovo
|
231 |
+
product: new
|
232 |
+
product sku micronmouse5000
|
233 |
+
product: new
|
234 |
+
product sku computer
|
235 |
+
product: new
|
236 |
+
product sku computer_fixed
|
237 |
+
product: new
|
238 |
+
product sku mycomputer
|
239 |
+
product: new
|
240 |
+
product sku HTC Touch Diamond
|
241 |
+
product: new
|
242 |
+
products to delete 0
|
243 |
+
new: Array
|
244 |
+
(
|
245 |
+
[0] => Array
|
246 |
+
(
|
247 |
+
[sku] => n2610
|
248 |
+
[upc] => 556f7a4b37495
|
249 |
+
[name] => Nokia 2610 Phone
|
250 |
+
[description] => The Nokia 2610 is an easy to use device that combines multiple messaging options including email, instant messaging, and more. You can even download MP3 ringtones, graphics, and games straight to the phone, or surf the Internet with Cingular's MEdia Net service. It's the perfect complement to Cingular service for those even remotely interested in mobile Web capabilities in an affordable handset.<br><br>
|
251 |
+
|
252 |
+
<b>Design</b><br>
|
253 |
+
Compact and stylish, the 2610 features a candybar design sporting a bright 128 x 128 pixel display capable of displaying over 65,000 colors. Most of the phone's features and on-screen menus are controlled by a center toggle on the control pad. A standard hands-free headphone jack is provided, as are volume control keys, and there's even a "Go-To" button that can be assigned by the user for quick access to favorite applications. Lastly, the included speakerphone allows you to talk handsfree, and because the phone sports an internal antenna, there's nothing to snag or break off.
|
254 |
+
|
255 |
+
|
256 |
+
[sms_name] => Nokia 2610 Phone
|
257 |
+
[sms_desc] => The Nokia 2610 is an easy to use device that combines multiple messaging options including email, instant messaging, and more. You can even download MP3 ringtones, graphics, and games straight to the phone, or surf the Internet with Cingular's MEdia Net service. It's the perfect complement to Cingular service for those even remotely interested in mobile Web capabilities in an affordable handset.<br><br>
|
258 |
+
|
259 |
+
<b>Design</b><br>
|
260 |
+
Compact and stylish, the 2610 features a candybar design sporting a bright 128 x 128 pixel display capable of displaying over 65,000 colors. Most of the phone's features and on-screen menus are controlled by a center toggle on the control pad. A standard hands-free headphone jack is provided, as are volume control keys, and there's even a "Go-To" button that can be assigned by the user for quick access to favorite applications. Lastly, the included speakerphone allows you to talk handsfree, and because the phone sports an internal antenna, there's nothing to snag or break off.
|
261 |
+
|
262 |
+
|
263 |
+
[url] => http://cornertysen.inmarkit.net/index.php/nokia-2610-phone.html
|
264 |
+
[taxonomy_id] => fcc3465
|
265 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/n/o/nokia-2610-phone-2.jpg
|
266 |
+
[live] => 1
|
267 |
+
[price] => 149.9900
|
268 |
+
)
|
269 |
+
|
270 |
+
[1] => Array
|
271 |
+
(
|
272 |
+
[sku] => bb8100
|
273 |
+
[upc] => 556f7a4b37908
|
274 |
+
[name] => BlackBerry 8100 Pearl
|
275 |
+
[description] => Like the BlackBerry 7105t, the BlackBerry 8100 Pearl is
|
276 |
+
The BlackBerry 8100 Pearl sports a large 240 x 260 screen that supports over 65,000 colors-- plenty of real estate to view your e-mails, Web browser content, messaging sessions, and attachments. The venerable BlackBerry trackwheel has been replaced on this model with an innovative four-way trackball placed below the screen. On the rear of the handheld, you'll find a 1.3-megapixel camera and a self portrait mirror. The handheld's microSD memory card slot is located inside the device, behind the battery. There's also a standard 2.5mm headset jack that can be used with the included headset, as well as a mini-USB port for data connectivity.
|
277 |
+
[sms_name] => BlackBerry 8100 Pearl
|
278 |
+
[sms_desc] => Like the BlackBerry 7105t, the BlackBerry 8100 Pearl is
|
279 |
+
The BlackBerry 8100 Pearl sports a large 240 x 260 screen that supports over 65,000 colors-- plenty of real estate to view your e-mails, Web browser content, messaging sessions, and attachments. The venerable BlackBerry trackwheel has been replaced on this model with an innovative four-way trackball placed below the screen. On the rear of the handheld, you'll find a 1.3-megapixel camera and a self portrait mirror. The handheld's microSD memory card slot is located inside the device, behind the battery. There's also a standard 2.5mm headset jack that can be used with the included headset, as well as a mini-USB port for data connectivity.
|
280 |
+
[url] => http://cornertysen.inmarkit.net/index.php/blackberry-8100-pearl.html
|
281 |
+
[taxonomy_id] => fcc3465
|
282 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/b/l/blackberry-8100-pearl-2.jpg
|
283 |
+
[live] => 1
|
284 |
+
[price] => 349.9900
|
285 |
+
)
|
286 |
+
|
287 |
+
[2] => Array
|
288 |
+
(
|
289 |
+
[sku] => sw810i
|
290 |
+
[upc] => 556f7a4b379e6
|
291 |
+
[name] => Sony Ericsson W810i
|
292 |
+
[description] => The W810i's screen sports 176 x 220 pixel resolution with support for 262,000 colors. Quick access buttons below the screen make it easy to control the phone's Walkman music features, while a five-way center button controls most of the phone's menus and features.
|
293 |
+
[sms_name] => Sony Ericsson W810i
|
294 |
+
[sms_desc] => The W810i's screen sports 176 x 220 pixel resolution with support for 262,000 colors. Quick access buttons below the screen make it easy to control the phone's Walkman music features, while a five-way center button controls most of the phone's menus and features.
|
295 |
+
[url] => http://cornertysen.inmarkit.net/index.php/sony-ericsson-w810i.html
|
296 |
+
[taxonomy_id] => fcc3465
|
297 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/s/o/sony-ericsson-w810i-2.jpg
|
298 |
+
[live] => 1
|
299 |
+
[price] => 399.9900
|
300 |
+
)
|
301 |
+
|
302 |
+
[3] => Array
|
303 |
+
(
|
304 |
+
[sku] => 8525PDA
|
305 |
+
[upc] => 556f7a4b37abe
|
306 |
+
[name] => AT&T 8525 PDA
|
307 |
+
[description] => The design of the 8525 is clean and uncluttered, with just a few buttons for mail, Internet Explorer, and contextual menus. Meanwhile, call answer and end buttons surround a five-way toggle that allows you to navigate and control the Windows Mobile interface. As mentioned, a full QWERTY keyboard cleverly slides out from underneath the screen. This allows you to hold the device horizontally, and the screen is automatically placed in landscape mode when you're using the keyboard. A side scroll wheel is conveniently tucked away on the side, making navigation when accessing the music player and other various applications a cinch when needed. A mini-SD memory expansion card slot is provided, as is an infrared port and support for a stereo Bluetooth headset. A mini-USB port is also included for wired data transfers and charging.
|
308 |
+
[sms_name] => AT&T 8525 PDA
|
309 |
+
[sms_desc] => The design of the 8525 is clean and uncluttered, with just a few buttons for mail, Internet Explorer, and contextual menus. Meanwhile, call answer and end buttons surround a five-way toggle that allows you to navigate and control the Windows Mobile interface. As mentioned, a full QWERTY keyboard cleverly slides out from underneath the screen. This allows you to hold the device horizontally, and the screen is automatically placed in landscape mode when you're using the keyboard. A side scroll wheel is conveniently tucked away on the side, making navigation when accessing the music player and other various applications a cinch when needed. A mini-SD memory expansion card slot is provided, as is an infrared port and support for a stereo Bluetooth headset. A mini-USB port is also included for wired data transfers and charging.
|
310 |
+
[url] => http://cornertysen.inmarkit.net/index.php/atandt-8525-pda.html
|
311 |
+
[taxonomy_id] => fcc3465
|
312 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/a/t/at-t-8525-pda-1.jpg
|
313 |
+
[live] => 1
|
314 |
+
[price] => 199.9900
|
315 |
+
)
|
316 |
+
|
317 |
+
[4] => Array
|
318 |
+
(
|
319 |
+
[sku] => MM-A900M
|
320 |
+
[upc] => 556f7a4b37b95
|
321 |
+
[name] => Samsung MM-A900M Ace
|
322 |
+
[description] => New services supported by both the MM-A900m include the newly announced Sprint Music StoreSM, which allows users to immediately buy and download complete songs directly to their phone; 30 channels of live and on demand video and audio from Sprint TVSM and On Demand, a personalized resource guide to news, traffic, weather, sports and entertainment. The MM-A900m offers great-looking design with the ability to download a rich selection of content directly to the phone. Features like external music-navigation keys make these phones both functional and attractive. These handsets are sure to be at the top of many wish lists.
|
323 |
+
[sms_name] => Samsung MM-A900M Ace
|
324 |
+
[sms_desc] => New services supported by both the MM-A900m include the newly announced Sprint Music StoreSM, which allows users to immediately buy and download complete songs directly to their phone; 30 channels of live and on demand video and audio from Sprint TVSM and On Demand, a personalized resource guide to news, traffic, weather, sports and entertainment. The MM-A900m offers great-looking design with the ability to download a rich selection of content directly to the phone. Features like external music-navigation keys make these phones both functional and attractive. These handsets are sure to be at the top of many wish lists.
|
325 |
+
[url] => http://cornertysen.inmarkit.net/index.php/samsung-mm-a900m-ace.html
|
326 |
+
[taxonomy_id] => fcc3465
|
327 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/s/a/samsung-mm-a900m-ace.jpg
|
328 |
+
[live] => 1
|
329 |
+
[price] => 150.0000
|
330 |
+
)
|
331 |
+
|
332 |
+
[5] => Array
|
333 |
+
(
|
334 |
+
[sku] => MA464LL/A
|
335 |
+
[upc] => 556f7a4b37c6c
|
336 |
+
[name] => Apple MacBook Pro MA464LL/A 15.4" Notebook PC
|
337 |
+
[description] => This, combined with myriad other engineering leaps, boosts performance up to four times higher than the PowerBook G4. With this awesome power, it's a breeze to render complex 3D models, enjoy smooth playback of HD video, or host a four-way video conference.Intel Core Duo is the first chip built using Intel's groundbreaking 65-nanometer process - resulting in transistors so small, you could fit a hundred inside a single human cell. With smaller distances for electrons to travel, and two processors designed to share resources and conserve power, Intel Core Duo achieves higher levels of performance as it uses fewer watts. Which is what makes it possible to design a super-powerful MacBook Pro that's only one inch thin.When Mac technology makes something easy, it's hardly news. So here's more non-news for MacBook Pro owners: software just works. If you see the Universal logo on a new application, that means it will run on Intel- and PowerPC-based Mac computers. For most existing applications, you simply do what you've always done: double-click them. Thanks to the Rosetta technology in Mac OS X, they look and feel just like they did before.
|
338 |
+
[sms_name] => Apple MacBook Pro MA464LL/A 15.4" Notebook PC
|
339 |
+
[sms_desc] => This, combined with myriad other engineering leaps, boosts performance up to four times higher than the PowerBook G4. With this awesome power, it's a breeze to render complex 3D models, enjoy smooth playback of HD video, or host a four-way video conference.Intel Core Duo is the first chip built using Intel's groundbreaking 65-nanometer process - resulting in transistors so small, you could fit a hundred inside a single human cell. With smaller distances for electrons to travel, and two processors designed to share resources and conserve power, Intel Core Duo achieves higher levels of performance as it uses fewer watts. Which is what makes it possible to design a super-powerful MacBook Pro that's only one inch thin.When Mac technology makes something easy, it's hardly news. So here's more non-news for MacBook Pro owners: software just works. If you see the Universal logo on a new application, that means it will run on Intel- and PowerPC-based Mac computers. For most existing applications, you simply do what you've always done: double-click them. Thanks to the Rosetta technology in Mac OS X, they look and feel just like they did before.
|
340 |
+
[url] => http://cornertysen.inmarkit.net/index.php/apple-macbook-pro-ma464ll-a-15-4-notebook-pc-2-0-ghz-intel-core-duo-1-gb-ram-100-gb-hard-drive-superdrive.html
|
341 |
+
[taxonomy_id] => fcc3465
|
342 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/a/p/apple-macbook-pro-ma464ll-a-15-4-notebook-pc.jpg
|
343 |
+
[live] => 1
|
344 |
+
[price] => 2299.9900
|
345 |
+
)
|
346 |
+
|
347 |
+
[6] => Array
|
348 |
+
(
|
349 |
+
[sku] => LX.FR206.001
|
350 |
+
[upc] => 556f7a4b37d4f
|
351 |
+
[name] => Acer Ferrari 3200 Notebook Computer PC
|
352 |
+
[description] => Acer has flawlessly designed the Ferrari 3200, instilling it with exceptional performance, brilliant graphics, and lightning-fast connectivity. This exclusive edition is another striking symbol of cooperation between Acer and Ferrari -- two progressive companies with proud heritages built on passion, innovation, power and success.
|
353 |
+
[sms_name] => Acer Ferrari 3200 Notebook Computer PC
|
354 |
+
[sms_desc] => Acer has flawlessly designed the Ferrari 3200, instilling it with exceptional performance, brilliant graphics, and lightning-fast connectivity. This exclusive edition is another striking symbol of cooperation between Acer and Ferrari -- two progressive companies with proud heritages built on passion, innovation, power and success.
|
355 |
+
[url] => http://cornertysen.inmarkit.net/index.php/acer-ferrari-3200-notebook-computer-pc.html
|
356 |
+
[taxonomy_id] => fcc3465
|
357 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/a/c/acer-ferrari-3200-notebook-computer-pc.jpg
|
358 |
+
[live] => 1
|
359 |
+
[price] => 1799.9900
|
360 |
+
)
|
361 |
+
|
362 |
+
[7] => Array
|
363 |
+
(
|
364 |
+
[sku] => VGN-TXN27N/B
|
365 |
+
[upc] => 556f7a4b37e27
|
366 |
+
[name] => Sony VAIO VGN-TXN27N/B 11.1" Notebook PC
|
367 |
+
[description] => Weighing in at just an amazing 2.84 pounds and offering a sleek, durable carbon-fiber case in charcoal black. And with 4 to 10 hours of standard battery life, it has the stamina to power you through your most demanding applications. With the integrated wireless WAN, you can access the national Sprint Mobile Broadband service to extend your wireless coverage beyond LAN access networks and hotspots, giving you the freedom to go farther, do more, and stay connected.
|
368 |
+
|
369 |
+
|
370 |
+
[sms_name] => Sony VAIO VGN-TXN27N/B 11.1" Notebook PC
|
371 |
+
[sms_desc] => Weighing in at just an amazing 2.84 pounds and offering a sleek, durable carbon-fiber case in charcoal black. And with 4 to 10 hours of standard battery life, it has the stamina to power you through your most demanding applications. With the integrated wireless WAN, you can access the national Sprint Mobile Broadband service to extend your wireless coverage beyond LAN access networks and hotspots, giving you the freedom to go farther, do more, and stay connected.
|
372 |
+
|
373 |
+
|
374 |
+
[url] => http://cornertysen.inmarkit.net/index.php/sony-vaio-vgn-txn27n-b-11-1-notebook-pc.html
|
375 |
+
[taxonomy_id] => fcc3465
|
376 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/s/o/sony-vaio-vgn-txn27n-b-11-1-notebook-pc.jpg
|
377 |
+
[live] => 1
|
378 |
+
[price] => 2699.9900
|
379 |
+
)
|
380 |
+
|
381 |
+
[8] => Array
|
382 |
+
(
|
383 |
+
[sku] => M285-E
|
384 |
+
[upc] => 556f7a4b37f0e
|
385 |
+
[name] => Toshiba M285-E 14"
|
386 |
+
[description] => Easily mobile at just 6 pounds, the Toshiba Satellite A135-S4527 makes it easy to get your work done with a large, bright 15.4-inch widescreen LCD. The XGA-resolution screen (1280 x 800) permits side-by-side viewing of documents for increased productivity. It's also great for using as a media center, with Toshiba's unique Express Media Player enabling you to bypass the system and access CDs and DVDs with a touch of button. This affordable notebook PC is powered by Intel's 1.73 GHz Core Duo T2080 processor, which provides an optimized, multithreaded architecture for improved gaming and multitasking performance and efficient power consumption. It also offers a 120 GB hard drive, 1 GB of installed RAM (2 GB maximum), dual-layer/multi-format DVD drive that also burns CDs, integrated 54g wireless connectivity, and Intel GMA 950 video card with up to 256 MB of shared video RAM.
|
387 |
+
|
388 |
+
|
389 |
+
[sms_name] => Toshiba M285-E 14"
|
390 |
+
[sms_desc] => Easily mobile at just 6 pounds, the Toshiba Satellite A135-S4527 makes it easy to get your work done with a large, bright 15.4-inch widescreen LCD. The XGA-resolution screen (1280 x 800) permits side-by-side viewing of documents for increased productivity. It's also great for using as a media center, with Toshiba's unique Express Media Player enabling you to bypass the system and access CDs and DVDs with a touch of button. This affordable notebook PC is powered by Intel's 1.73 GHz Core Duo T2080 processor, which provides an optimized, multithreaded architecture for improved gaming and multitasking performance and efficient power consumption. It also offers a 120 GB hard drive, 1 GB of installed RAM (2 GB maximum), dual-layer/multi-format DVD drive that also burns CDs, integrated 54g wireless connectivity, and Intel GMA 950 video card with up to 256 MB of shared video RAM.
|
391 |
+
|
392 |
+
|
393 |
+
[url] => http://cornertysen.inmarkit.net/index.php/toshiba-satellite-a135-s4527-155-4-notebook-pc-intel-pentium-dual-core-processor-t2080-1-gb-ram-120-gb-hard-drive-supermulti-dvd-drive-vista-premium.html
|
394 |
+
[taxonomy_id] => fcc3465
|
395 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/t/o/toshiba-m285-e-14.jpg
|
396 |
+
[live] => 1
|
397 |
+
[price] => 1599.9900
|
398 |
+
)
|
399 |
+
|
400 |
+
[9] => Array
|
401 |
+
(
|
402 |
+
[sku] => cn_3
|
403 |
+
[upc] => 556f7a4b37ff6
|
404 |
+
[name] => CN Clogs Beach/Garden Clog
|
405 |
+
[description] => Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.
|
406 |
+
[sms_name] => CN Clogs Beach/Garden Clog
|
407 |
+
[sms_desc] => Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.
|
408 |
+
[url] => http://cornertysen.inmarkit.net/index.php/cn-clogs-beach-garden-clog-3.html
|
409 |
+
[taxonomy_id] => fcc3465
|
410 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/c/n/cn-clogs-beach-garden-clog-2.jpg
|
411 |
+
[live] => 1
|
412 |
+
[price] => 15.9900
|
413 |
+
)
|
414 |
+
|
415 |
+
[10] => Array
|
416 |
+
(
|
417 |
+
[sku] => asc_8
|
418 |
+
[upc] => 556f7a4b380e0
|
419 |
+
[name] => ASICS® Men's GEL-Kayano® XII
|
420 |
+
[description] => The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.
|
421 |
+
[sms_name] => ASICS® Men's GEL-Kayano® XII
|
422 |
+
[sms_desc] => The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.
|
423 |
+
[url] => http://cornertysen.inmarkit.net/index.php/asics-men-s-gel-kayano-xii-8.html
|
424 |
+
[taxonomy_id] => fcc3465
|
425 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/no_selection
|
426 |
+
[live] => 1
|
427 |
+
[price] => 134.9900
|
428 |
+
)
|
429 |
+
|
430 |
+
[11] => Array
|
431 |
+
(
|
432 |
+
[sku] => steve_4
|
433 |
+
[upc] => 556f7a4b381c3
|
434 |
+
[name] => Steven by Steve Madden Pryme Pump
|
435 |
+
[description] => Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you're certain to catch a lot of attention.
|
436 |
+
[sms_name] => Steven by Steve Madden Pryme Pump
|
437 |
+
[sms_desc] => Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you're certain to catch a lot of attention.
|
438 |
+
[url] => http://cornertysen.inmarkit.net/index.php/steven-by-steve-madden-pryme-pump-4.html
|
439 |
+
[taxonomy_id] => fcc3465
|
440 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/s/t/steven-by-steve-madden-pryme-pump-2.jpg
|
441 |
+
[live] => 1
|
442 |
+
[price] => 69.9900
|
443 |
+
)
|
444 |
+
|
445 |
+
[12] => Array
|
446 |
+
(
|
447 |
+
[sku] => nine_3
|
448 |
+
[upc] => 556f7a4b382a0
|
449 |
+
[name] => Nine West Women's Lucero Pump
|
450 |
+
[description] => The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you'll be absolutely unforgettable.
|
451 |
+
[sms_name] => Nine West Women's Lucero Pump
|
452 |
+
[sms_desc] => The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you'll be absolutely unforgettable.
|
453 |
+
[url] => http://cornertysen.inmarkit.net/index.php/nine-west-women-s-lucero-pump-3.html
|
454 |
+
[taxonomy_id] => fcc3465
|
455 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/no_selection
|
456 |
+
[live] => 1
|
457 |
+
[price] => 89.9900
|
458 |
+
)
|
459 |
+
|
460 |
+
[13] => Array
|
461 |
+
(
|
462 |
+
[sku] => ecco_3
|
463 |
+
[upc] => 556f7a4b38385
|
464 |
+
[name] => ECCO Womens Golf Flexor Golf Shoe
|
465 |
+
[description] => Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you'll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.
|
466 |
+
[sms_name] => ECCO Womens Golf Flexor Golf Shoe
|
467 |
+
[sms_desc] => Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you'll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.
|
468 |
+
[url] => http://cornertysen.inmarkit.net/index.php/ecco-womens-golf-flexor-golf-shoe-3.html
|
469 |
+
[taxonomy_id] => fcc3465
|
470 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/e/c/ecco-womens-golf-flexor-golf-shoe-2.jpg
|
471 |
+
[live] => 1
|
472 |
+
[price] => 159.9900
|
473 |
+
)
|
474 |
+
|
475 |
+
[14] => Array
|
476 |
+
(
|
477 |
+
[sku] => ken_8
|
478 |
+
[upc] => 556f7a4b3847b
|
479 |
+
[name] => Kenneth Cole New York Men's Con-verge Slip-on
|
480 |
+
[description] => High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.
|
481 |
+
[sms_name] => Kenneth Cole New York Men's Con-verge Slip-on
|
482 |
+
[sms_desc] => High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.
|
483 |
+
[url] => http://cornertysen.inmarkit.net/index.php/kenneth-cole-new-york-men-s-con-verge-slip-on-8.html
|
484 |
+
[taxonomy_id] => fcc3465
|
485 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on-2.jpg
|
486 |
+
[live] => 1
|
487 |
+
[price] => 160.9900
|
488 |
+
)
|
489 |
+
|
490 |
+
[15] => Array
|
491 |
+
(
|
492 |
+
[sku] => coal_sm
|
493 |
+
[upc] => 556f7a4b38555
|
494 |
+
[name] => Coalesce: Functioning On Impatience T-Shirt
|
495 |
+
[description] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
496 |
+
# Shoulder-to-shoulder taping
|
497 |
+
# Double-needle sleeves and bottom hem
|
498 |
+
[sms_name] => Coalesce: Functioning On Impatience T-Shirt
|
499 |
+
[sms_desc] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
500 |
+
# Shoulder-to-shoulder taping
|
501 |
+
# Double-needle sleeves and bottom hem
|
502 |
+
[url] => http://cornertysen.inmarkit.net/index.php/coalesce-functioning-on-impatience-t-shirt-small.html
|
503 |
+
[taxonomy_id] => fcc3465
|
504 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/no_selection
|
505 |
+
[live] => 1
|
506 |
+
[price] => 15.0000
|
507 |
+
)
|
508 |
+
|
509 |
+
[16] => Array
|
510 |
+
(
|
511 |
+
[sku] => ink_sm
|
512 |
+
[upc] => 556f7a4b3863d
|
513 |
+
[name] => Ink Eater: Krylon Bombear Destroyed Tee
|
514 |
+
[description] => We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear. Oh well -- can't argue with art. Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!
|
515 |
+
[sms_name] => Ink Eater: Krylon Bombear Destroyed Tee
|
516 |
+
[sms_desc] => We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear. Oh well -- can't argue with art. Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!
|
517 |
+
[url] => http://cornertysen.inmarkit.net/index.php/ink-eater-krylon-bombear-destroyed-tee-sm.html
|
518 |
+
[taxonomy_id] => fcc3465
|
519 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/no_selection
|
520 |
+
[live] => 1
|
521 |
+
[price] => 22.0000
|
522 |
+
)
|
523 |
+
|
524 |
+
[17] => Array
|
525 |
+
(
|
526 |
+
[sku] => oc_sm
|
527 |
+
[upc] => 556f7a4b38717
|
528 |
+
[name] => The Only Children: Paisley T-Shirt
|
529 |
+
[description] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
530 |
+
# Double-needle sleeves and bottom hem
|
531 |
+
[sms_name] => The Only Children: Paisley T-Shirt
|
532 |
+
[sms_desc] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
533 |
+
# Double-needle sleeves and bottom hem
|
534 |
+
[url] => http://cornertysen.inmarkit.net/index.php/the-only-children-paisley-t-shirt-sm.html
|
535 |
+
[taxonomy_id] => fcc3465
|
536 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/t/h/the-only-children-paisley-t-shirt-1.jpg
|
537 |
+
[live] => 1
|
538 |
+
[price] => 15.0000
|
539 |
+
)
|
540 |
+
|
541 |
+
[18] => Array
|
542 |
+
(
|
543 |
+
[sku] => zol_r_sm
|
544 |
+
[upc] => 556f7a4b38811
|
545 |
+
[name] => Zolof The Rock And Roll Destroyer: LOL Cat T-shirt
|
546 |
+
[description] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
547 |
+
# Shoulder-to-shoulder taping
|
548 |
+
# Double-needle sleeves and bottom hem
|
549 |
+
[sms_name] => Zolof The Rock And Roll Destroyer: LOL Cat T-shirt
|
550 |
+
[sms_desc] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
551 |
+
# Shoulder-to-shoulder taping
|
552 |
+
# Double-needle sleeves and bottom hem
|
553 |
+
[url] => http://cornertysen.inmarkit.net/index.php/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-r-sm.html
|
554 |
+
[taxonomy_id] => fcc3465
|
555 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-1.jpg
|
556 |
+
[live] => 1
|
557 |
+
[price] => 13.5000
|
558 |
+
)
|
559 |
+
|
560 |
+
[19] => Array
|
561 |
+
(
|
562 |
+
[sku] => 4fasd5f5
|
563 |
+
[upc] => 556f7a4b388ed
|
564 |
+
[name] => The Get Up Kids: Band Camp Pullover Hoodie
|
565 |
+
[description] => Printed on American Apparel Classic style 5495 California Fleece Pull-Over Hoodies. Sizing info is available here.
|
566 |
+
[sms_name] => The Get Up Kids: Band Camp Pullover Hoodie
|
567 |
+
[sms_desc] => Printed on American Apparel Classic style 5495 California Fleece Pull-Over Hoodies. Sizing info is available here.
|
568 |
+
[url] => http://cornertysen.inmarkit.net/index.php/the-get-up-kids-band-camp-pullover-hoodie.html
|
569 |
+
[taxonomy_id] => fcc3465
|
570 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/t/h/the-get-up-kids-band-camp-pullover-hoodie-1.jpg
|
571 |
+
[live] => 1
|
572 |
+
[price] => 30.0000
|
573 |
+
)
|
574 |
+
|
575 |
+
)
|
576 |
+
|
577 |
+
new: Array
|
578 |
+
(
|
579 |
+
[0] => Array
|
580 |
+
(
|
581 |
+
[sku] => 384822
|
582 |
+
[upc] => 556f7a4b389da
|
583 |
+
[name] => Akio Dresser
|
584 |
+
[description] => Features include inset panel sides and for spacious drawers and two wicker baskets. 41"Wx18"Dx36"H.
|
585 |
+
[sms_name] => Akio Dresser
|
586 |
+
[sms_desc] => Features include inset panel sides and for spacious drawers and two wicker baskets. 41"Wx18"Dx36"H.
|
587 |
+
[url] => http://cornertysen.inmarkit.net/index.php/akio-dresser.html
|
588 |
+
[taxonomy_id] => fcc3465
|
589 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/a/k/akio-dresser.jpg
|
590 |
+
[live] => 1
|
591 |
+
[price] => 399.9900
|
592 |
+
)
|
593 |
+
|
594 |
+
[1] => Array
|
595 |
+
(
|
596 |
+
[sku] => bar1234
|
597 |
+
[upc] => 556f7a4b38ab4
|
598 |
+
[name] => Barcelona Bamboo Platform Bed
|
599 |
+
[description] => Entirely handcrafted of solid Bamboo. Designed for use with a mattress alone, it includes a sturdy, padded wood platform for comfort and proper mattress support.
|
600 |
+
[sms_name] => Barcelona Bamboo Platform Bed
|
601 |
+
[sms_desc] => Entirely handcrafted of solid Bamboo. Designed for use with a mattress alone, it includes a sturdy, padded wood platform for comfort and proper mattress support.
|
602 |
+
[url] => http://cornertysen.inmarkit.net/index.php/barcelona-bamboo-platform-bed.html
|
603 |
+
[taxonomy_id] => fcc3465
|
604 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/b/a/barcelona-bamboo-platform-bed.jpg
|
605 |
+
[live] => 1
|
606 |
+
[price] => 2299.0000
|
607 |
+
)
|
608 |
+
|
609 |
+
[2] => Array
|
610 |
+
(
|
611 |
+
[sku] => Rebel XT
|
612 |
+
[upc] => 556f7a4b38b9a
|
613 |
+
[name] => Canon Digital Rebel XT 8MP Digital SLR Camera
|
614 |
+
[description] => The Canon EOS Digital Rebel camera now has a new, faster, even smaller big brother. Sibling rivalries aside, the 8.0-megapixel Canon EOS Digital Rebel XT SLR adds resolution, speed, extra creative control, and enhanced comfort in the hand to one of the smallest and lightest digital cameras in its class. Even with its advancements in ergonomic design and technology, this easy-to-use EOS digital camera is compatible with all of Canon's EF lenses, including the EF-S lenses.
|
615 |
+
[sms_name] => Canon Digital Rebel XT 8MP Digital SLR Camera
|
616 |
+
[sms_desc] => The Canon EOS Digital Rebel camera now has a new, faster, even smaller big brother. Sibling rivalries aside, the 8.0-megapixel Canon EOS Digital Rebel XT SLR adds resolution, speed, extra creative control, and enhanced comfort in the hand to one of the smallest and lightest digital cameras in its class. Even with its advancements in ergonomic design and technology, this easy-to-use EOS digital camera is compatible with all of Canon's EF lenses, including the EF-S lenses.
|
617 |
+
[url] => http://cornertysen.inmarkit.net/index.php/canon-digital-rebel-xt-8mp-digital-slr-camera-with-ef-s-18-55mm-f3-5-5-6-lens-black.html
|
618 |
+
[taxonomy_id] => fcc3465
|
619 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/c/a/canon-digital-rebel-xt-8mp-digital-slr-camera-1.jpg
|
620 |
+
[live] => 1
|
621 |
+
[price] => 550.0000
|
622 |
+
)
|
623 |
+
|
624 |
+
[3] => Array
|
625 |
+
(
|
626 |
+
[sku] => QC-2185
|
627 |
+
[upc] => 556f7a4b38c72
|
628 |
+
[name] => Argus QC-2185 Quick Click 5MP Digital Camera
|
629 |
+
[description] => The Argus QC-2185 Quick Click 5MP digital camera offers all the basic features you need in a compact and stylish digital camera. This unit is easy to use, and is perfect for those who want a completely portable option for taking good pictures, without having to empty their wallet.
|
630 |
+
|
631 |
+
The Argus QC-2185 features a clear and bright 1.1-inch CSTN (color super-twist nematic) LCD display that makes it easy to frame the perfect picture. Thanks to its USB 1.1 connection compatibility, this digital camera lets you quickly download pictures to your Mac or PC, and can also function as a handy web camera. The QC-2185 includes eight megabytes of internal SDRAM memory, with the ability to expand camera memory via a built-in SD (secure digital) storage card slot for easy storage and transfer of your pictures. This unit also includes a built-in auto flash with a three to seven foot range, and comes with ArcSoft PhotoImpression's photo editing software which makes it easy for you to edit, crop, adjust and improve all your best pictures to make them even better.
|
632 |
+
|
633 |
+
[sms_name] => Argus QC-2185 Quick Click 5MP Digital Camera
|
634 |
+
[sms_desc] => The Argus QC-2185 Quick Click 5MP digital camera offers all the basic features you need in a compact and stylish digital camera. This unit is easy to use, and is perfect for those who want a completely portable option for taking good pictures, without having to empty their wallet.
|
635 |
+
|
636 |
+
The Argus QC-2185 features a clear and bright 1.1-inch CSTN (color super-twist nematic) LCD display that makes it easy to frame the perfect picture. Thanks to its USB 1.1 connection compatibility, this digital camera lets you quickly download pictures to your Mac or PC, and can also function as a handy web camera. The QC-2185 includes eight megabytes of internal SDRAM memory, with the ability to expand camera memory via a built-in SD (secure digital) storage card slot for easy storage and transfer of your pictures. This unit also includes a built-in auto flash with a three to seven foot range, and comes with ArcSoft PhotoImpression's photo editing software which makes it easy for you to edit, crop, adjust and improve all your best pictures to make them even better.
|
637 |
+
|
638 |
+
[url] => http://cornertysen.inmarkit.net/index.php/argus-qc-2185-quick-click-5mp-digital-camera.html
|
639 |
+
[taxonomy_id] => fcc3465
|
640 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/a/r/argus-qc-2185-quick-click-5mp-digital-camera-2.jpg
|
641 |
+
[live] => 1
|
642 |
+
[price] => 37.4900
|
643 |
+
)
|
644 |
+
|
645 |
+
[4] => Array
|
646 |
+
(
|
647 |
+
[sku] => 750
|
648 |
+
[upc] => 556f7a4b38d55
|
649 |
+
[name] => Olympus Stylus 750 7.1MP Digital Camera
|
650 |
+
[description] => Olympus continues to innovate with the launch of the Stylus 750 digital camera, a technically sophisticated point-and-shoot camera offering a number of pioneering technologies such as Dual Image Stabilization, Bright Capture Technology, and TruePic Turbo, as well as a powerful 5x optical zoom that tucks away into a streamlined metal, all-weather body design. The camera is distinguished by a number of premium features, including:
|
651 |
+
|
652 |
+
* An advanced combination of the mechanical CCD-shift Image Stabilization and Digital Image Stabilization work together to ensure the clearest pictures possible in any situation;
|
653 |
+
* A 5x optical zoom lens with a newly developed lens element to maintain a small compact size;
|
654 |
+
* A 2.5-inch LCD and Bright Capture Technology dramatically improve composition, capture and review of images in low-light situations;
|
655 |
+
* Olympus' exclusive TruePic Turbo Image Processing engine is coupled with a 7.1-megapixel image sensor to produce crisp, high-quality p
|
656 |
+
[sms_name] => Olympus Stylus 750 7.1MP Digital Camera
|
657 |
+
[sms_desc] => Olympus continues to innovate with the launch of the Stylus 750 digital camera, a technically sophisticated point-and-shoot camera offering a number of pioneering technologies such as Dual Image Stabilization, Bright Capture Technology, and TruePic Turbo, as well as a powerful 5x optical zoom that tucks away into a streamlined metal, all-weather body design. The camera is distinguished by a number of premium features, including:
|
658 |
+
|
659 |
+
* An advanced combination of the mechanical CCD-shift Image Stabilization and Digital Image Stabilization work together to ensure the clearest pictures possible in any situation;
|
660 |
+
* A 5x optical zoom lens with a newly developed lens element to maintain a small compact size;
|
661 |
+
* A 2.5-inch LCD and Bright Capture Technology dramatically improve composition, capture and review of images in low-light situations;
|
662 |
+
* Olympus' exclusive TruePic Turbo Image Processing engine is coupled with a 7.1-megapixel image sensor to produce crisp, high-quality p
|
663 |
+
[url] => http://cornertysen.inmarkit.net/index.php/olympus-stylus-750-7-1mp-digital-camera.html
|
664 |
+
[taxonomy_id] => fcc3465
|
665 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/o/l/olympus-stylus-750-7-1mp-digital-camera-2.jpg
|
666 |
+
[live] => 1
|
667 |
+
[price] => 161.9400
|
668 |
+
)
|
669 |
+
|
670 |
+
[5] => Array
|
671 |
+
(
|
672 |
+
[sku] => A630
|
673 |
+
[upc] => 556f7a4b38e38
|
674 |
+
[name] => Canon PowerShot A630 8MP Digital Camera with 4x Optical Zoom
|
675 |
+
[description] => Replacing the highly popular PowerShot A620, the PowerShot A630 features a rotating 2.5-inch vari-angle LCD, 4x optical zoom lens, and a vast array of creative shooting modes.<br>
|
676 |
+
|
677 |
+
The PowerShot A630 packs a vast array of advanced features into a remarkably compact space<br><br>
|
678 |
+
|
679 |
+
|
680 |
+
[sms_name] => Canon PowerShot A630 8MP Digital Camera with 4x Optical Zoom
|
681 |
+
[sms_desc] => Replacing the highly popular PowerShot A620, the PowerShot A630 features a rotating 2.5-inch vari-angle LCD, 4x optical zoom lens, and a vast array of creative shooting modes.<br>
|
682 |
+
|
683 |
+
The PowerShot A630 packs a vast array of advanced features into a remarkably compact space<br><br>
|
684 |
+
|
685 |
+
|
686 |
+
[url] => http://cornertysen.inmarkit.net/index.php/canon-powershot-a630-8mp-digital-camera-with-4x-optical-zoom.html
|
687 |
+
[taxonomy_id] => fcc3465
|
688 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/c/a/canon-powershot-a630-8mp-digital-camera-with-4x-optical-zoom-2.jpg
|
689 |
+
[live] => 1
|
690 |
+
[price] => 329.9900
|
691 |
+
)
|
692 |
+
|
693 |
+
[6] => Array
|
694 |
+
(
|
695 |
+
[sku] => C530
|
696 |
+
[upc] => 556f7a4b38f1d
|
697 |
+
[name] => Kodak EasyShare C530 5MP Digital Camera
|
698 |
+
[description] => Small on size. Big on value. Kodak's newest C-Series digital camera, the C530, sports awesome features--such as 5.0-megapixel CCD resolution, on-camera image cropping, and an on-camera Share button--at a very affordable price.
|
699 |
+
[sms_name] => Kodak EasyShare C530 5MP Digital Camera
|
700 |
+
[sms_desc] => Small on size. Big on value. Kodak's newest C-Series digital camera, the C530, sports awesome features--such as 5.0-megapixel CCD resolution, on-camera image cropping, and an on-camera Share button--at a very affordable price.
|
701 |
+
[url] => http://cornertysen.inmarkit.net/index.php/kodak-easyshare-c530-5mp-digital-camera.html
|
702 |
+
[taxonomy_id] => fcc3465
|
703 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/k/o/kodak-easyshare-c530-5mp-digital-camera-2.jpg
|
704 |
+
[live] => 1
|
705 |
+
[price] => 199.9900
|
706 |
+
)
|
707 |
+
|
708 |
+
[7] => Array
|
709 |
+
(
|
710 |
+
[sku] => ana_9
|
711 |
+
[upc] => 556f7a4b39005
|
712 |
+
[name] => Anashria Womens Premier Leather Sandal
|
713 |
+
[description] => Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.
|
714 |
+
[sms_name] => Anashria Womens Premier Leather Sandal
|
715 |
+
[sms_desc] => Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.
|
716 |
+
[url] => http://cornertysen.inmarkit.net/index.php/anashria-womens-premier-leather-sandal-9.html
|
717 |
+
[taxonomy_id] => fcc3465
|
718 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/a/n/anashria-womens-premier-leather-sandal-2.jpg
|
719 |
+
[live] => 1
|
720 |
+
[price] => 41.9500
|
721 |
+
)
|
722 |
+
|
723 |
+
[8] => Array
|
724 |
+
(
|
725 |
+
[sku] => 1111
|
726 |
+
[upc] => 556f7a4b390ec
|
727 |
+
[name] => Ottoman
|
728 |
+
[description] => The Magento ottoman will impress with its style while it delivers on quality. This piece of living room furniture is built to last with durable solid wood framing, generous padding and plush stain-resistant microfiber upholstery.
|
729 |
+
[sms_name] => Ottoman
|
730 |
+
[sms_desc] => The Magento ottoman will impress with its style while it delivers on quality. This piece of living room furniture is built to last with durable solid wood framing, generous padding and plush stain-resistant microfiber upholstery.
|
731 |
+
[url] => http://cornertysen.inmarkit.net/index.php/ottoman.html
|
732 |
+
[taxonomy_id] => fcc3465
|
733 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/o/t/ottoman.jpg
|
734 |
+
[live] => 1
|
735 |
+
[price] => 299.9900
|
736 |
+
)
|
737 |
+
|
738 |
+
[9] => Array
|
739 |
+
(
|
740 |
+
[sku] => 1112
|
741 |
+
[upc] => 556f7a4b391c7
|
742 |
+
[name] => Chair
|
743 |
+
[description] => This Magento chair features a fun, futuristic design, with fluid curves and gentle angles that follow the shape of the body to enhance ultimate relaxation. It combines a hint of nostalgia with the up-to-date sensibility and function of modern chairs. It is in soft, velvety microfiber.
|
744 |
+
[sms_name] => Chair
|
745 |
+
[sms_desc] => This Magento chair features a fun, futuristic design, with fluid curves and gentle angles that follow the shape of the body to enhance ultimate relaxation. It combines a hint of nostalgia with the up-to-date sensibility and function of modern chairs. It is in soft, velvety microfiber.
|
746 |
+
[url] => http://cornertysen.inmarkit.net/index.php/chair.html
|
747 |
+
[taxonomy_id] => fcc3465
|
748 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/c/h/chair.jpg
|
749 |
+
[live] => 1
|
750 |
+
[price] => 129.9900
|
751 |
+
)
|
752 |
+
|
753 |
+
[10] => Array
|
754 |
+
(
|
755 |
+
[sku] => 1113
|
756 |
+
[upc] => 556f7a4b392b0
|
757 |
+
[name] => Couch
|
758 |
+
[description] => Inspired by the classic camelback sofa, Magento offers comfort and style in a low maintenance package. For a sleek, simple and stylish piece, look no further than the Magento sofa - or sofabed!
|
759 |
+
[sms_name] => Couch
|
760 |
+
[sms_desc] => Inspired by the classic camelback sofa, Magento offers comfort and style in a low maintenance package. For a sleek, simple and stylish piece, look no further than the Magento sofa - or sofabed!
|
761 |
+
[url] => http://cornertysen.inmarkit.net/index.php/couch.html
|
762 |
+
[taxonomy_id] => fcc3465
|
763 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/c/o/couch.jpg
|
764 |
+
[live] => 1
|
765 |
+
[price] => 599.9900
|
766 |
+
)
|
767 |
+
|
768 |
+
[11] => Array
|
769 |
+
(
|
770 |
+
[sku] => 1114
|
771 |
+
[upc] => 556f7a4b39711
|
772 |
+
[name] => Magento Red Furniture Set
|
773 |
+
[description] => The perfect furniture set for the living room! Love red? You'll love these pieces of handmade modern furniture!
|
774 |
+
[sms_name] => Magento Red Furniture Set
|
775 |
+
[sms_desc] => The perfect furniture set for the living room! Love red? You'll love these pieces of handmade modern furniture!
|
776 |
+
[url] => http://cornertysen.inmarkit.net/index.php/magento-red-furniture-set.html
|
777 |
+
[taxonomy_id] => fcc3465
|
778 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/m/a/magento-red-furniture-set.jpg
|
779 |
+
[live] => 1
|
780 |
+
[price] => 699.9900
|
781 |
+
)
|
782 |
+
|
783 |
+
[12] => Array
|
784 |
+
(
|
785 |
+
[sku] => ana_3
|
786 |
+
[upc] => 556f7a4b39923
|
787 |
+
[name] => Anashria Womens Premier Leather Sandal
|
788 |
+
[description] => Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.
|
789 |
+
[sms_name] => Anashria Womens Premier Leather Sandal
|
790 |
+
[sms_desc] => Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.
|
791 |
+
[url] => http://cornertysen.inmarkit.net/index.php/anashria-womens-premier-leather-sandal-3.html
|
792 |
+
[taxonomy_id] => fcc3465
|
793 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/a/n/anashria-womens-premier-leather-sandal.jpg
|
794 |
+
[live] => 1
|
795 |
+
[price] => 41.9500
|
796 |
+
)
|
797 |
+
|
798 |
+
[13] => Array
|
799 |
+
(
|
800 |
+
[sku] => ana_4
|
801 |
+
[upc] => 556f7a4b399f9
|
802 |
+
[name] => Anashria Womens Premier Leather Sandal
|
803 |
+
[description] => Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.
|
804 |
+
[sms_name] => Anashria Womens Premier Leather Sandal
|
805 |
+
[sms_desc] => Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.
|
806 |
+
[url] => http://cornertysen.inmarkit.net/index.php/anashria-womens-premier-leather-sandal-4.html
|
807 |
+
[taxonomy_id] => fcc3465
|
808 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/a/n/anashria-womens-premier-leather-sandal-2.jpg
|
809 |
+
[live] => 1
|
810 |
+
[price] => 41.9500
|
811 |
+
)
|
812 |
+
|
813 |
+
[14] => Array
|
814 |
+
(
|
815 |
+
[sku] => ana_5
|
816 |
+
[upc] => 556f7a4b39ad1
|
817 |
+
[name] => Anashria Womens Premier Leather Sandal
|
818 |
+
[description] => Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.
|
819 |
+
[sms_name] => Anashria Womens Premier Leather Sandal
|
820 |
+
[sms_desc] => Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.
|
821 |
+
[url] => http://cornertysen.inmarkit.net/index.php/anashria-womens-premier-leather-sandal-5.html
|
822 |
+
[taxonomy_id] => fcc3465
|
823 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/a/n/anashria-womens-premier-leather-sandal.jpg
|
824 |
+
[live] => 1
|
825 |
+
[price] => 41.9500
|
826 |
+
)
|
827 |
+
|
828 |
+
[15] => Array
|
829 |
+
(
|
830 |
+
[sku] => ana_6
|
831 |
+
[upc] => 556f7a4b39ba9
|
832 |
+
[name] => Anashria Womens Premier Leather Sandal
|
833 |
+
[description] => Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.
|
834 |
+
[sms_name] => Anashria Womens Premier Leather Sandal
|
835 |
+
[sms_desc] => Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.
|
836 |
+
[url] => http://cornertysen.inmarkit.net/index.php/anashria-womens-premier-leather-sandal-6.html
|
837 |
+
[taxonomy_id] => fcc3465
|
838 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/a/n/anashria-womens-premier-leather-sandal.jpg
|
839 |
+
[live] => 1
|
840 |
+
[price] => 41.9500
|
841 |
+
)
|
842 |
+
|
843 |
+
[16] => Array
|
844 |
+
(
|
845 |
+
[sku] => ana_7
|
846 |
+
[upc] => 556f7a4b39c8f
|
847 |
+
[name] => Anashria Womens Premier Leather Sandal
|
848 |
+
[description] => Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.
|
849 |
+
[sms_name] => Anashria Womens Premier Leather Sandal
|
850 |
+
[sms_desc] => Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.
|
851 |
+
[url] => http://cornertysen.inmarkit.net/index.php/anashria-womens-premier-leather-sandal-7.html
|
852 |
+
[taxonomy_id] => fcc3465
|
853 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/a/n/anashria-womens-premier-leather-sandal.jpg
|
854 |
+
[live] => 1
|
855 |
+
[price] => 41.9500
|
856 |
+
)
|
857 |
+
|
858 |
+
[17] => Array
|
859 |
+
(
|
860 |
+
[sku] => ana_8
|
861 |
+
[upc] => 556f7a4b39d74
|
862 |
+
[name] => Anashria Womens Premier Leather Sandal
|
863 |
+
[description] => Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.
|
864 |
+
[sms_name] => Anashria Womens Premier Leather Sandal
|
865 |
+
[sms_desc] => Womens Premier Leather Single Layer Narrow Strap - NEW Colors Available - Womens Style - Genuine Top Grain Premier Leather - Rich Color Tones - Straps lined with 2000 lb test nylon - Guaranteed for the Life of the Sole - Non-slip sole - Note: Rainbow is in the process of unveiling a new toe post tag that is much smaller than the original tag.
|
866 |
+
[url] => http://cornertysen.inmarkit.net/index.php/anashria-womens-premier-leather-sandal-8.html
|
867 |
+
[taxonomy_id] => fcc3465
|
868 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/a/n/anashria-womens-premier-leather-sandal.jpg
|
869 |
+
[live] => 1
|
870 |
+
[price] => 41.9500
|
871 |
+
)
|
872 |
+
|
873 |
+
[18] => Array
|
874 |
+
(
|
875 |
+
[sku] => cn
|
876 |
+
[upc] => 556f7a4b3a57c
|
877 |
+
[name] => CN Clogs Beach/Garden Clog
|
878 |
+
[description] => Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.
|
879 |
+
[sms_name] => CN Clogs Beach/Garden Clog
|
880 |
+
[sms_desc] => Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.
|
881 |
+
[url] => http://cornertysen.inmarkit.net/index.php/cn-clogs-beach-garden-clog.html
|
882 |
+
[taxonomy_id] => fcc3465
|
883 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/c/n/cn-clogs-beach-garden-clog.jpg
|
884 |
+
[live] => 1
|
885 |
+
[price] => 15.9900
|
886 |
+
)
|
887 |
+
|
888 |
+
[19] => Array
|
889 |
+
(
|
890 |
+
[sku] => cn_4
|
891 |
+
[upc] => 556f7a4b3a7e3
|
892 |
+
[name] => CN Clogs Beach/Garden Clog
|
893 |
+
[description] => Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.
|
894 |
+
[sms_name] => CN Clogs Beach/Garden Clog
|
895 |
+
[sms_desc] => Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.
|
896 |
+
[url] => http://cornertysen.inmarkit.net/index.php/cn-clogs-beach-garden-clog-4.html
|
897 |
+
[taxonomy_id] => fcc3465
|
898 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/c/n/cn-clogs-beach-garden-clog.jpg
|
899 |
+
[live] => 1
|
900 |
+
[price] => 15.9900
|
901 |
+
)
|
902 |
+
|
903 |
+
)
|
904 |
+
|
905 |
+
new: Array
|
906 |
+
(
|
907 |
+
[0] => Array
|
908 |
+
(
|
909 |
+
[sku] => cn_5
|
910 |
+
[upc] => 556f7a4b3a8bd
|
911 |
+
[name] => CN Clogs Beach/Garden Clog
|
912 |
+
[description] => Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.
|
913 |
+
[sms_name] => CN Clogs Beach/Garden Clog
|
914 |
+
[sms_desc] => Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.
|
915 |
+
[url] => http://cornertysen.inmarkit.net/index.php/cn-clogs-beach-garden-clog-5.html
|
916 |
+
[taxonomy_id] => fcc3465
|
917 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/c/n/cn-clogs-beach-garden-clog.jpg
|
918 |
+
[live] => 1
|
919 |
+
[price] => 15.9900
|
920 |
+
)
|
921 |
+
|
922 |
+
[1] => Array
|
923 |
+
(
|
924 |
+
[sku] => cn_6
|
925 |
+
[upc] => 556f7a4b3a9a4
|
926 |
+
[name] => CN Clogs Beach/Garden Clog
|
927 |
+
[description] => Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.
|
928 |
+
[sms_name] => CN Clogs Beach/Garden Clog
|
929 |
+
[sms_desc] => Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.
|
930 |
+
[url] => http://cornertysen.inmarkit.net/index.php/cn-clogs-beach-garden-clog-6.html
|
931 |
+
[taxonomy_id] => fcc3465
|
932 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/c/n/cn-clogs-beach-garden-clog.jpg
|
933 |
+
[live] => 1
|
934 |
+
[price] => 15.9900
|
935 |
+
)
|
936 |
+
|
937 |
+
[2] => Array
|
938 |
+
(
|
939 |
+
[sku] => cn_7
|
940 |
+
[upc] => 556f7a4b3aa7c
|
941 |
+
[name] => CN Clogs Beach/Garden Clog
|
942 |
+
[description] => Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.
|
943 |
+
[sms_name] => CN Clogs Beach/Garden Clog
|
944 |
+
[sms_desc] => Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.
|
945 |
+
[url] => http://cornertysen.inmarkit.net/index.php/cn-clogs-beach-garden-clog-7.html
|
946 |
+
[taxonomy_id] => fcc3465
|
947 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/c/n/cn-clogs-beach-garden-clog.jpg
|
948 |
+
[live] => 1
|
949 |
+
[price] => 15.9900
|
950 |
+
)
|
951 |
+
|
952 |
+
[3] => Array
|
953 |
+
(
|
954 |
+
[sku] => cn_m8
|
955 |
+
[upc] => 556f7a4b3ab54
|
956 |
+
[name] => CN Clogs Beach/Garden Clog
|
957 |
+
[description] => Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.
|
958 |
+
[sms_name] => CN Clogs Beach/Garden Clog
|
959 |
+
[sms_desc] => Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.
|
960 |
+
[url] => http://cornertysen.inmarkit.net/index.php/cn-clogs-beach-garden-clog-8.html
|
961 |
+
[taxonomy_id] => fcc3465
|
962 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/c/n/cn-clogs-beach-garden-clog.jpg
|
963 |
+
[live] => 1
|
964 |
+
[price] => 15.9900
|
965 |
+
)
|
966 |
+
|
967 |
+
[4] => Array
|
968 |
+
(
|
969 |
+
[sku] => cn_m9
|
970 |
+
[upc] => 556f7a4b3ac3a
|
971 |
+
[name] => CN Clogs Beach/Garden Clog
|
972 |
+
[description] => Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.
|
973 |
+
[sms_name] => CN Clogs Beach/Garden Clog
|
974 |
+
[sms_desc] => Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.
|
975 |
+
[url] => http://cornertysen.inmarkit.net/index.php/cn-clogs-beach-garden-clog-9.html
|
976 |
+
[taxonomy_id] => fcc3465
|
977 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/c/n/cn-clogs-beach-garden-clog.jpg
|
978 |
+
[live] => 1
|
979 |
+
[price] => 15.9900
|
980 |
+
)
|
981 |
+
|
982 |
+
[5] => Array
|
983 |
+
(
|
984 |
+
[sku] => cn_m10
|
985 |
+
[upc] => 556f7a4b3ad1d
|
986 |
+
[name] => CN Clogs Beach/Garden Clog
|
987 |
+
[description] => Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.
|
988 |
+
[sms_name] => CN Clogs Beach/Garden Clog
|
989 |
+
[sms_desc] => Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.
|
990 |
+
[url] => http://cornertysen.inmarkit.net/index.php/cn-clogs-beach-garden-clog-10.html
|
991 |
+
[taxonomy_id] => fcc3465
|
992 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/c/n/cn-clogs-beach-garden-clog.jpg
|
993 |
+
[live] => 1
|
994 |
+
[price] => 15.9900
|
995 |
+
)
|
996 |
+
|
997 |
+
[6] => Array
|
998 |
+
(
|
999 |
+
[sku] => cn_m11
|
1000 |
+
[upc] => 556f7a4b3adf6
|
1001 |
+
[name] => CN Clogs Beach/Garden Clog
|
1002 |
+
[description] => Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.
|
1003 |
+
[sms_name] => CN Clogs Beach/Garden Clog
|
1004 |
+
[sms_desc] => Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.
|
1005 |
+
[url] => http://cornertysen.inmarkit.net/index.php/cn-clogs-beach-garden-clog-11.html
|
1006 |
+
[taxonomy_id] => fcc3465
|
1007 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/c/n/cn-clogs-beach-garden-clog.jpg
|
1008 |
+
[live] => 1
|
1009 |
+
[price] => 15.9900
|
1010 |
+
)
|
1011 |
+
|
1012 |
+
[7] => Array
|
1013 |
+
(
|
1014 |
+
[sku] => cn_m12
|
1015 |
+
[upc] => 556f7a4b3aee3
|
1016 |
+
[name] => CN Clogs Beach/Garden Clog
|
1017 |
+
[description] => Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.
|
1018 |
+
[sms_name] => CN Clogs Beach/Garden Clog
|
1019 |
+
[sms_desc] => Comfortable and fun to wear these clogs are the latest trend in fashion footwear. Wear them either at the beach, in your garden, at the mall or just about anywhere you would want to be comfortable.
|
1020 |
+
[url] => http://cornertysen.inmarkit.net/index.php/cn-clogs-beach-garden-clog-12.html
|
1021 |
+
[taxonomy_id] => fcc3465
|
1022 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/c/n/cn-clogs-beach-garden-clog.jpg
|
1023 |
+
[live] => 1
|
1024 |
+
[price] => 15.9900
|
1025 |
+
)
|
1026 |
+
|
1027 |
+
[8] => Array
|
1028 |
+
(
|
1029 |
+
[sku] => asc
|
1030 |
+
[upc] => 556f7a4b3afcb
|
1031 |
+
[name] => ASICS® Men's GEL-Kayano® XII
|
1032 |
+
[description] => Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.
|
1033 |
+
[sms_name] => ASICS® Men's GEL-Kayano® XII
|
1034 |
+
[sms_desc] => Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.
|
1035 |
+
[url] => http://cornertysen.inmarkit.net/index.php/asics-men-s-gel-kayano-xii.html
|
1036 |
+
[taxonomy_id] => fcc3465
|
1037 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/a/s/asics-men-s-gel-kayano-xii-2.jpg
|
1038 |
+
[live] => 1
|
1039 |
+
[price] => 134.9900
|
1040 |
+
)
|
1041 |
+
|
1042 |
+
[9] => Array
|
1043 |
+
(
|
1044 |
+
[sku] => asc_9
|
1045 |
+
[upc] => 556f7a4b3b0bd
|
1046 |
+
[name] => ASICS® Men's GEL-Kayano® XII
|
1047 |
+
[description] => The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.
|
1048 |
+
[sms_name] => ASICS® Men's GEL-Kayano® XII
|
1049 |
+
[sms_desc] => The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.
|
1050 |
+
[url] => http://cornertysen.inmarkit.net/index.php/asics-men-s-gel-kayano-xii-9.html
|
1051 |
+
[taxonomy_id] => fcc3465
|
1052 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/no_selection
|
1053 |
+
[live] => 1
|
1054 |
+
[price] => 134.9900
|
1055 |
+
)
|
1056 |
+
|
1057 |
+
[10] => Array
|
1058 |
+
(
|
1059 |
+
[sku] => asc_10
|
1060 |
+
[upc] => 556f7a4b3b1a4
|
1061 |
+
[name] => ASICS® Men's GEL-Kayano® XII
|
1062 |
+
[description] => The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.
|
1063 |
+
[sms_name] => ASICS® Men's GEL-Kayano® XII
|
1064 |
+
[sms_desc] => The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.
|
1065 |
+
[url] => http://cornertysen.inmarkit.net/index.php/asics-men-s-gel-kayano-xii-10.html
|
1066 |
+
[taxonomy_id] => fcc3465
|
1067 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/no_selection
|
1068 |
+
[live] => 1
|
1069 |
+
[price] => 134.9900
|
1070 |
+
)
|
1071 |
+
|
1072 |
+
[11] => Array
|
1073 |
+
(
|
1074 |
+
[sku] => asc_11
|
1075 |
+
[upc] => 556f7a4b3b288
|
1076 |
+
[name] => ASICS® Men's GEL-Kayano® XII
|
1077 |
+
[description] => The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.
|
1078 |
+
[sms_name] => ASICS® Men's GEL-Kayano® XII
|
1079 |
+
[sms_desc] => The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.
|
1080 |
+
[url] => http://cornertysen.inmarkit.net/index.php/asics-men-s-gel-kayano-xii-11.html
|
1081 |
+
[taxonomy_id] => fcc3465
|
1082 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/no_selection
|
1083 |
+
[live] => 1
|
1084 |
+
[price] => 134.9900
|
1085 |
+
)
|
1086 |
+
|
1087 |
+
[12] => Array
|
1088 |
+
(
|
1089 |
+
[sku] => asc_12
|
1090 |
+
[upc] => 556f7a4b3b342
|
1091 |
+
[name] => ASICS® Men's GEL-Kayano® XII
|
1092 |
+
[description] => The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.
|
1093 |
+
[sms_name] => ASICS® Men's GEL-Kayano® XII
|
1094 |
+
[sms_desc] => The ASICS® GEL-Kayano® XII running shoe delivers the ultimate blend of cushioning and support. Biomorphic Fit™ upper offers enhanced upper fit and comfort while decreasing the potential for irritation. Solyte midsole material is lighter than standard EVA and SpEVA® combined with improved cushioning and durability. Impact Guidance System (I.G.S.®) uses linked componentry to encourage optimal gait while allowing for natural foot movement from heel strike to toe off. DuoMax® support system helps ensure that the shoe maintains proper support for the foot during the critical transition from heel strike to toe off. Space Trusstic® System creates a pocket between the Trusstic® System device and the midsole, allowing for greater midsole deformation and more efficient foot function. GEL® Cushioning System provides maximum rearfoot and forefoot shock attenuation. Wt. 12.6 oz.
|
1095 |
+
[url] => http://cornertysen.inmarkit.net/index.php/asics-men-s-gel-kayano-xii-12.html
|
1096 |
+
[taxonomy_id] => fcc3465
|
1097 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/no_selection
|
1098 |
+
[live] => 1
|
1099 |
+
[price] => 134.9900
|
1100 |
+
)
|
1101 |
+
|
1102 |
+
[13] => Array
|
1103 |
+
(
|
1104 |
+
[sku] => ken
|
1105 |
+
[upc] => 556f7a4b3b438
|
1106 |
+
[name] => Kenneth Cole New York Men's Con-verge Slip-on
|
1107 |
+
[description] => High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.
|
1108 |
+
[sms_name] => Kenneth Cole New York Men's Con-verge Slip-on
|
1109 |
+
[sms_desc] => High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.
|
1110 |
+
[url] => http://cornertysen.inmarkit.net/index.php/kenneth-cole-new-york-men-s-con-verge-slip-on.html
|
1111 |
+
[taxonomy_id] => fcc3465
|
1112 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg
|
1113 |
+
[live] => 1
|
1114 |
+
[price] => 160.9900
|
1115 |
+
)
|
1116 |
+
|
1117 |
+
[14] => Array
|
1118 |
+
(
|
1119 |
+
[sku] => ken_9
|
1120 |
+
[upc] => 556f7a4b41314
|
1121 |
+
[name] => Kenneth Cole New York Men's Con-verge Slip-on
|
1122 |
+
[description] => High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.
|
1123 |
+
[sms_name] => Kenneth Cole New York Men's Con-verge Slip-on
|
1124 |
+
[sms_desc] => High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.
|
1125 |
+
[url] => http://cornertysen.inmarkit.net/index.php/kenneth-cole-new-york-men-s-con-verge-slip-on-9.html
|
1126 |
+
[taxonomy_id] => fcc3465
|
1127 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg
|
1128 |
+
[live] => 1
|
1129 |
+
[price] => 160.9900
|
1130 |
+
)
|
1131 |
+
|
1132 |
+
[15] => Array
|
1133 |
+
(
|
1134 |
+
[sku] => ken_10
|
1135 |
+
[upc] => 556f7a4b41401
|
1136 |
+
[name] => Kenneth Cole New York Men's Con-verge Slip-on
|
1137 |
+
[description] => High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.
|
1138 |
+
[sms_name] => Kenneth Cole New York Men's Con-verge Slip-on
|
1139 |
+
[sms_desc] => High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.
|
1140 |
+
[url] => http://cornertysen.inmarkit.net/index.php/kenneth-cole-new-york-men-s-con-verge-slip-on-10.html
|
1141 |
+
[taxonomy_id] => fcc3465
|
1142 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg
|
1143 |
+
[live] => 1
|
1144 |
+
[price] => 160.9900
|
1145 |
+
)
|
1146 |
+
|
1147 |
+
[16] => Array
|
1148 |
+
(
|
1149 |
+
[sku] => ken_11
|
1150 |
+
[upc] => 556f7a4b414e5
|
1151 |
+
[name] => Kenneth Cole New York Men's Con-verge Slip-on
|
1152 |
+
[description] => High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.
|
1153 |
+
[sms_name] => Kenneth Cole New York Men's Con-verge Slip-on
|
1154 |
+
[sms_desc] => High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.
|
1155 |
+
[url] => http://cornertysen.inmarkit.net/index.php/kenneth-cole-new-york-men-s-con-verge-slip-on-11.html
|
1156 |
+
[taxonomy_id] => fcc3465
|
1157 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg
|
1158 |
+
[live] => 1
|
1159 |
+
[price] => 160.9900
|
1160 |
+
)
|
1161 |
+
|
1162 |
+
[17] => Array
|
1163 |
+
(
|
1164 |
+
[sku] => ken_12
|
1165 |
+
[upc] => 556f7a4b415c8
|
1166 |
+
[name] => Kenneth Cole New York Men's Con-verge Slip-on
|
1167 |
+
[description] => High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.
|
1168 |
+
[sms_name] => Kenneth Cole New York Men's Con-verge Slip-on
|
1169 |
+
[sms_desc] => High fashion and classic good looks converge in this suave slip on from Kenneth Cole. Smooth leather upper in a dress slip on style, with a stitched and covered seam moc-inspired square toe, quarter panel curved overlays and flared tongue with side elastic panels for a comfortable, secure fit. Smooth leather lining, cushioned leather topped insole. Dress midsole with a beveled edge, 1 inch capped dress heel. Flat traction outsole.
|
1170 |
+
[url] => http://cornertysen.inmarkit.net/index.php/kenneth-cole-new-york-men-s-con-verge-slip-on-12.html
|
1171 |
+
[taxonomy_id] => fcc3465
|
1172 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/k/e/kenneth-cole-new-york-men-s-con-verge-slip-on.jpg
|
1173 |
+
[live] => 1
|
1174 |
+
[price] => 160.9900
|
1175 |
+
)
|
1176 |
+
|
1177 |
+
[18] => Array
|
1178 |
+
(
|
1179 |
+
[sku] => steve
|
1180 |
+
[upc] => 556f7a4b416bc
|
1181 |
+
[name] => Steven by Steve Madden Pryme Pump
|
1182 |
+
[description] => Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you're certain to catch a lot of attention.
|
1183 |
+
[sms_name] => Steven by Steve Madden Pryme Pump
|
1184 |
+
[sms_desc] => Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you're certain to catch a lot of attention.
|
1185 |
+
[url] => http://cornertysen.inmarkit.net/index.php/steven-by-steve-madden-pryme-pump.html
|
1186 |
+
[taxonomy_id] => fcc3465
|
1187 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/s/t/steven-by-steve-madden-pryme-pump.jpg
|
1188 |
+
[live] => 1
|
1189 |
+
[price] => 69.9900
|
1190 |
+
)
|
1191 |
+
|
1192 |
+
[19] => Array
|
1193 |
+
(
|
1194 |
+
[sku] => steve_5
|
1195 |
+
[upc] => 556f7a4b41796
|
1196 |
+
[name] => Steven by Steve Madden Pryme Pump
|
1197 |
+
[description] => Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you're certain to catch a lot of attention.
|
1198 |
+
[sms_name] => Steven by Steve Madden Pryme Pump
|
1199 |
+
[sms_desc] => Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you're certain to catch a lot of attention.
|
1200 |
+
[url] => http://cornertysen.inmarkit.net/index.php/steven-by-steve-madden-pryme-pump-5.html
|
1201 |
+
[taxonomy_id] => fcc3465
|
1202 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/s/t/steven-by-steve-madden-pryme-pump.jpg
|
1203 |
+
[live] => 1
|
1204 |
+
[price] => 69.9900
|
1205 |
+
)
|
1206 |
+
|
1207 |
+
)
|
1208 |
+
|
1209 |
+
new: Array
|
1210 |
+
(
|
1211 |
+
[0] => Array
|
1212 |
+
(
|
1213 |
+
[sku] => steve_6
|
1214 |
+
[upc] => 556f7a4b4187a
|
1215 |
+
[name] => Steven by Steve Madden Pryme Pump
|
1216 |
+
[description] => Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you're certain to catch a lot of attention.
|
1217 |
+
[sms_name] => Steven by Steve Madden Pryme Pump
|
1218 |
+
[sms_desc] => Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you're certain to catch a lot of attention.
|
1219 |
+
[url] => http://cornertysen.inmarkit.net/index.php/steven-by-steve-madden-pryme-pump-6.html
|
1220 |
+
[taxonomy_id] => fcc3465
|
1221 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/s/t/steven-by-steve-madden-pryme-pump.jpg
|
1222 |
+
[live] => 1
|
1223 |
+
[price] => 69.9900
|
1224 |
+
)
|
1225 |
+
|
1226 |
+
[1] => Array
|
1227 |
+
(
|
1228 |
+
[sku] => steve_7
|
1229 |
+
[upc] => 556f7a4b4195f
|
1230 |
+
[name] => Steven by Steve Madden Pryme Pump
|
1231 |
+
[description] => Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you're certain to catch a lot of attention.
|
1232 |
+
[sms_name] => Steven by Steve Madden Pryme Pump
|
1233 |
+
[sms_desc] => Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you're certain to catch a lot of attention.
|
1234 |
+
[url] => http://cornertysen.inmarkit.net/index.php/steven-by-steve-madden-pryme-pump-7.html
|
1235 |
+
[taxonomy_id] => fcc3465
|
1236 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/s/t/steven-by-steve-madden-pryme-pump.jpg
|
1237 |
+
[live] => 1
|
1238 |
+
[price] => 69.9900
|
1239 |
+
)
|
1240 |
+
|
1241 |
+
[2] => Array
|
1242 |
+
(
|
1243 |
+
[sku] => steve_8
|
1244 |
+
[upc] => 556f7a4b41a43
|
1245 |
+
[name] => Steven by Steve Madden Pryme Pump
|
1246 |
+
[description] => Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you're certain to catch a lot of attention.
|
1247 |
+
[sms_name] => Steven by Steve Madden Pryme Pump
|
1248 |
+
[sms_desc] => Nothing will turn his head faster than you wearing the sexy Pryme pump from Steven by Steve Madden. This daring pump has a pretty patent leather upper with light shirring, a double stitch detail surrounding the collar, and a vampy almond shaped toe. It also features smooth linings, a fully cushioned insole, a sexy covered stiletto heel, and a lightly textured dress leather outsole. Any way you wear the Pryme, you're certain to catch a lot of attention.
|
1249 |
+
[url] => http://cornertysen.inmarkit.net/index.php/steven-by-steve-madden-pryme-pump-8.html
|
1250 |
+
[taxonomy_id] => fcc3465
|
1251 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/s/t/steven-by-steve-madden-pryme-pump.jpg
|
1252 |
+
[live] => 1
|
1253 |
+
[price] => 69.9900
|
1254 |
+
)
|
1255 |
+
|
1256 |
+
[3] => Array
|
1257 |
+
(
|
1258 |
+
[sku] => nine
|
1259 |
+
[upc] => 556f7a4b41b2b
|
1260 |
+
[name] => Nine West Women's Lucero Pump
|
1261 |
+
[description] => The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you'll be absolutely unforgettable.
|
1262 |
+
[sms_name] => Nine West Women's Lucero Pump
|
1263 |
+
[sms_desc] => The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you'll be absolutely unforgettable.
|
1264 |
+
[url] => http://cornertysen.inmarkit.net/index.php/nine-west-women-s-lucero-pump.html
|
1265 |
+
[taxonomy_id] => fcc3465
|
1266 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/n/i/nine-west-women-s-lucero-pump.jpg
|
1267 |
+
[live] => 1
|
1268 |
+
[price] => 89.9900
|
1269 |
+
)
|
1270 |
+
|
1271 |
+
[4] => Array
|
1272 |
+
(
|
1273 |
+
[sku] => nine_4
|
1274 |
+
[upc] => 556f7a4b41c12
|
1275 |
+
[name] => Nine West Women's Lucero Pump
|
1276 |
+
[description] => The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you'll be absolutely unforgettable.
|
1277 |
+
[sms_name] => Nine West Women's Lucero Pump
|
1278 |
+
[sms_desc] => The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you'll be absolutely unforgettable.
|
1279 |
+
[url] => http://cornertysen.inmarkit.net/index.php/nine-west-women-s-lucero-pump-4.html
|
1280 |
+
[taxonomy_id] => fcc3465
|
1281 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/no_selection
|
1282 |
+
[live] => 1
|
1283 |
+
[price] => 89.9900
|
1284 |
+
)
|
1285 |
+
|
1286 |
+
[5] => Array
|
1287 |
+
(
|
1288 |
+
[sku] => nine_5
|
1289 |
+
[upc] => 556f7a4b41cfc
|
1290 |
+
[name] => Nine West Women's Lucero Pump
|
1291 |
+
[description] => The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you'll be absolutely unforgettable.
|
1292 |
+
[sms_name] => Nine West Women's Lucero Pump
|
1293 |
+
[sms_desc] => The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you'll be absolutely unforgettable.
|
1294 |
+
[url] => http://cornertysen.inmarkit.net/index.php/nine-west-women-s-lucero-pump-5.html
|
1295 |
+
[taxonomy_id] => fcc3465
|
1296 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/no_selection
|
1297 |
+
[live] => 1
|
1298 |
+
[price] => 89.9900
|
1299 |
+
)
|
1300 |
+
|
1301 |
+
[6] => Array
|
1302 |
+
(
|
1303 |
+
[sku] => nine_6
|
1304 |
+
[upc] => 556f7a4b41de1
|
1305 |
+
[name] => Nine West Women's Lucero Pump
|
1306 |
+
[description] => The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you'll be absolutely unforgettable.
|
1307 |
+
[sms_name] => Nine West Women's Lucero Pump
|
1308 |
+
[sms_desc] => The Lucero pump from Nine West may just leave him at a loss for words. This flirty pump has a leather upper, a pretty almond-shaped toe with a slight V-cut vamp, leather linings, and a cushioned insole for long-wearing comfort. The stiletto heel radiates a subtle hint of sensuality, so sass up your jean and t-shirt look or nighttime attire with this hot pump and you'll be absolutely unforgettable.
|
1309 |
+
[url] => http://cornertysen.inmarkit.net/index.php/nine-west-women-s-lucero-pump-6.html
|
1310 |
+
[taxonomy_id] => fcc3465
|
1311 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/no_selection
|
1312 |
+
[live] => 1
|
1313 |
+
[price] => 89.9900
|
1314 |
+
)
|
1315 |
+
|
1316 |
+
[7] => Array
|
1317 |
+
(
|
1318 |
+
[sku] => ecco
|
1319 |
+
[upc] => 556f7a4b41ed4
|
1320 |
+
[name] => ECCO Womens Golf Flexor Golf Shoe
|
1321 |
+
[description] => Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you'll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.
|
1322 |
+
[sms_name] => ECCO Womens Golf Flexor Golf Shoe
|
1323 |
+
[sms_desc] => Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you'll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.
|
1324 |
+
[url] => http://cornertysen.inmarkit.net/index.php/ecco-womens-golf-flexor-golf-shoe.html
|
1325 |
+
[taxonomy_id] => fcc3465
|
1326 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/e/c/ecco-womens-golf-flexor-golf-shoe.jpg
|
1327 |
+
[live] => 1
|
1328 |
+
[price] => 159.9900
|
1329 |
+
)
|
1330 |
+
|
1331 |
+
[8] => Array
|
1332 |
+
(
|
1333 |
+
[sku] => ecco_4
|
1334 |
+
[upc] => 556f7a4b41fb3
|
1335 |
+
[name] => ECCO Womens Golf Flexor Golf Shoe
|
1336 |
+
[description] => Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you'll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.
|
1337 |
+
[sms_name] => ECCO Womens Golf Flexor Golf Shoe
|
1338 |
+
[sms_desc] => Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you'll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.
|
1339 |
+
[url] => http://cornertysen.inmarkit.net/index.php/ecco-womens-golf-flexor-golf-shoe-4.html
|
1340 |
+
[taxonomy_id] => fcc3465
|
1341 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/e/c/ecco-womens-golf-flexor-golf-shoe.jpg
|
1342 |
+
[live] => 1
|
1343 |
+
[price] => 159.9900
|
1344 |
+
)
|
1345 |
+
|
1346 |
+
[9] => Array
|
1347 |
+
(
|
1348 |
+
[sku] => ecco_5
|
1349 |
+
[upc] => 556f7a4b4209a
|
1350 |
+
[name] => ECCO Womens Golf Flexor Golf Shoe
|
1351 |
+
[description] => Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you'll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.
|
1352 |
+
[sms_name] => ECCO Womens Golf Flexor Golf Shoe
|
1353 |
+
[sms_desc] => Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you'll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.
|
1354 |
+
[url] => http://cornertysen.inmarkit.net/index.php/ecco-womens-golf-flexor-golf-shoe-5.html
|
1355 |
+
[taxonomy_id] => fcc3465
|
1356 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/e/c/ecco-womens-golf-flexor-golf-shoe.jpg
|
1357 |
+
[live] => 1
|
1358 |
+
[price] => 159.9900
|
1359 |
+
)
|
1360 |
+
|
1361 |
+
[10] => Array
|
1362 |
+
(
|
1363 |
+
[sku] => ecco_6
|
1364 |
+
[upc] => 556f7a4b42185
|
1365 |
+
[name] => ECCO Womens Golf Flexor Golf Shoe
|
1366 |
+
[description] => Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you'll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.
|
1367 |
+
[sms_name] => ECCO Womens Golf Flexor Golf Shoe
|
1368 |
+
[sms_desc] => Featuring a wide toe box and delivering optimum support, the sporty Golf Flexor golf shoe is a stylish cleat that you'll love wearing on and off the links. The contrasting embossed snakeskin panels attract interest, while the laid back lace-up style keeps things simple. And thanks to the one-year waterproof guarantee, you can trust these shoes to keep you in the game, even when conditions are less than perfect.
|
1369 |
+
[url] => http://cornertysen.inmarkit.net/index.php/ecco-womens-golf-flexor-golf-shoe-6.html
|
1370 |
+
[taxonomy_id] => fcc3465
|
1371 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/e/c/ecco-womens-golf-flexor-golf-shoe.jpg
|
1372 |
+
[live] => 1
|
1373 |
+
[price] => 159.9900
|
1374 |
+
)
|
1375 |
+
|
1376 |
+
[11] => Array
|
1377 |
+
(
|
1378 |
+
[sku] => coal_md
|
1379 |
+
[upc] => 556f7a4b4225e
|
1380 |
+
[name] => Coalesce: Functioning On Impatience T-Shirt
|
1381 |
+
[description] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
1382 |
+
# Shoulder-to-shoulder taping
|
1383 |
+
# Double-needle sleeves and bottom hem
|
1384 |
+
[sms_name] => Coalesce: Functioning On Impatience T-Shirt
|
1385 |
+
[sms_desc] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
1386 |
+
# Shoulder-to-shoulder taping
|
1387 |
+
# Double-needle sleeves and bottom hem
|
1388 |
+
[url] => http://cornertysen.inmarkit.net/index.php/coalesce-functioning-on-impatience-t-shirt-medium.html
|
1389 |
+
[taxonomy_id] => fcc3465
|
1390 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/no_selection
|
1391 |
+
[live] => 1
|
1392 |
+
[price] => 15.0000
|
1393 |
+
)
|
1394 |
+
|
1395 |
+
[12] => Array
|
1396 |
+
(
|
1397 |
+
[sku] => coal_lrg
|
1398 |
+
[upc] => 556f7a4b42342
|
1399 |
+
[name] => Coalesce: Functioning On Impatience T-Shirt
|
1400 |
+
[description] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
1401 |
+
# Shoulder-to-shoulder taping
|
1402 |
+
# Double-needle sleeves and bottom hem
|
1403 |
+
[sms_name] => Coalesce: Functioning On Impatience T-Shirt
|
1404 |
+
[sms_desc] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
1405 |
+
# Shoulder-to-shoulder taping
|
1406 |
+
# Double-needle sleeves and bottom hem
|
1407 |
+
[url] => http://cornertysen.inmarkit.net/index.php/coalesce-functioning-on-impatience-t-shirt-large.html
|
1408 |
+
[taxonomy_id] => fcc3465
|
1409 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/no_selection
|
1410 |
+
[live] => 1
|
1411 |
+
[price] => 15.0000
|
1412 |
+
)
|
1413 |
+
|
1414 |
+
[13] => Array
|
1415 |
+
(
|
1416 |
+
[sku] => coal_1
|
1417 |
+
[upc] => 556f7a4b4244f
|
1418 |
+
[name] => Coalesce: Functioning On Impatience T-Shirt
|
1419 |
+
[description] => Comfortable preshrunk shirts. Highest Quality Printing.<br><br>
|
1420 |
+
<ul>
|
1421 |
+
<ul class="disc">
|
1422 |
+
<li>6.1 oz. 100% preshrunk heavyweight cotton<br></li>
|
1423 |
+
<li>Shoulder-to-shoulder taping<br></li>
|
1424 |
+
<li>Double-needle sleeves and bottom hem<br></li>
|
1425 |
+
[sms_name] => Coalesce: Functioning On Impatience T-Shirt
|
1426 |
+
[sms_desc] => Comfortable preshrunk shirts. Highest Quality Printing.<br><br>
|
1427 |
+
<ul>
|
1428 |
+
<ul class="disc">
|
1429 |
+
<li>6.1 oz. 100% preshrunk heavyweight cotton<br></li>
|
1430 |
+
<li>Shoulder-to-shoulder taping<br></li>
|
1431 |
+
<li>Double-needle sleeves and bottom hem<br></li>
|
1432 |
+
[url] => http://cornertysen.inmarkit.net/index.php/coalesce-functioning-on-impatience-t-shirt.html
|
1433 |
+
[taxonomy_id] => fcc3465
|
1434 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/c/o/coalesce-functioning-on-impatience-t-shirt-1.jpg
|
1435 |
+
[live] => 1
|
1436 |
+
[price] => 15.0000
|
1437 |
+
)
|
1438 |
+
|
1439 |
+
[14] => Array
|
1440 |
+
(
|
1441 |
+
[sku] => ink
|
1442 |
+
[upc] => 556f7a4b4253c
|
1443 |
+
[name] => Ink Eater: Krylon Bombear Destroyed Tee
|
1444 |
+
[description] => We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear. Oh well -- can't argue with art. Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!
|
1445 |
+
[sms_name] => Ink Eater: Krylon Bombear Destroyed Tee
|
1446 |
+
[sms_desc] => We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear. Oh well -- can't argue with art. Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!
|
1447 |
+
[url] => http://cornertysen.inmarkit.net/index.php/ink-eater-krylon-bombear-destroyed-tee.html
|
1448 |
+
[taxonomy_id] => fcc3465
|
1449 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/i/n/ink-eater-krylon-bombear-destroyed-tee.jpg
|
1450 |
+
[live] => 1
|
1451 |
+
[price] => 22.0000
|
1452 |
+
)
|
1453 |
+
|
1454 |
+
[15] => Array
|
1455 |
+
(
|
1456 |
+
[sku] => ink_med
|
1457 |
+
[upc] => 556f7a4b42626
|
1458 |
+
[name] => Ink Eater: Krylon Bombear Destroyed Tee
|
1459 |
+
[description] => We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear. Oh well -- can't argue with art. Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!
|
1460 |
+
[sms_name] => Ink Eater: Krylon Bombear Destroyed Tee
|
1461 |
+
[sms_desc] => We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear. Oh well -- can't argue with art. Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!
|
1462 |
+
[url] => http://cornertysen.inmarkit.net/index.php/ink-eater-krylon-bombear-destroyed-tee-med.html
|
1463 |
+
[taxonomy_id] => fcc3465
|
1464 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/i/n/ink-eater-krylon-bombear-destroyed-tee.jpg
|
1465 |
+
[live] => 1
|
1466 |
+
[price] => 22.0000
|
1467 |
+
)
|
1468 |
+
|
1469 |
+
[16] => Array
|
1470 |
+
(
|
1471 |
+
[sku] => ink_lrg
|
1472 |
+
[upc] => 556f7a4b42702
|
1473 |
+
[name] => Ink Eater: Krylon Bombear Destroyed Tee
|
1474 |
+
[description] => We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear. Oh well -- can't argue with art. Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!
|
1475 |
+
[sms_name] => Ink Eater: Krylon Bombear Destroyed Tee
|
1476 |
+
[sms_desc] => We bought these with the intention of making shirts for our family reunion, only to come back the next day to find each and every one of them had been tagged by The Bear. Oh well -- can't argue with art. Now you can make your grandparents proud by wearing an original piece of graf work to YOUR family reunion!
|
1477 |
+
[url] => http://cornertysen.inmarkit.net/index.php/ink-eater-krylon-bombear-destroyed-tee-lrg.html
|
1478 |
+
[taxonomy_id] => fcc3465
|
1479 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/i/n/ink-eater-krylon-bombear-destroyed-tee.jpg
|
1480 |
+
[live] => 1
|
1481 |
+
[price] => 22.0000
|
1482 |
+
)
|
1483 |
+
|
1484 |
+
[17] => Array
|
1485 |
+
(
|
1486 |
+
[sku] => oc
|
1487 |
+
[upc] => 556f7a4b427f4
|
1488 |
+
[name] => The Only Children: Paisley T-Shirt
|
1489 |
+
[description] => <ul>
|
1490 |
+
<ul class="disc">
|
1491 |
+
<li>6.1 oz. 100% preshrunk heavyweight cotton <br></li>
|
1492 |
+
<li>Double-needle sleeves and bottom hem</li>
|
1493 |
+
</ul>
|
1494 |
+
[sms_name] => The Only Children: Paisley T-Shirt
|
1495 |
+
[sms_desc] => <ul>
|
1496 |
+
<ul class="disc">
|
1497 |
+
<li>6.1 oz. 100% preshrunk heavyweight cotton <br></li>
|
1498 |
+
<li>Double-needle sleeves and bottom hem</li>
|
1499 |
+
</ul>
|
1500 |
+
[url] => http://cornertysen.inmarkit.net/index.php/the-only-children-paisley-t-shirt.html
|
1501 |
+
[taxonomy_id] => fcc3465
|
1502 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/t/h/the-only-children-paisley-t-shirt.jpg
|
1503 |
+
[live] => 1
|
1504 |
+
[price] => 100.0000
|
1505 |
+
)
|
1506 |
+
|
1507 |
+
[18] => Array
|
1508 |
+
(
|
1509 |
+
[sku] => oc_med
|
1510 |
+
[upc] => 556f7a4b428da
|
1511 |
+
[name] => The Only Children: Paisley T-Shirt
|
1512 |
+
[description] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
1513 |
+
# Double-needle sleeves and bottom hem
|
1514 |
+
[sms_name] => The Only Children: Paisley T-Shirt
|
1515 |
+
[sms_desc] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
1516 |
+
# Double-needle sleeves and bottom hem
|
1517 |
+
[url] => http://cornertysen.inmarkit.net/index.php/the-only-children-paisley-t-shirt-med.html
|
1518 |
+
[taxonomy_id] => fcc3465
|
1519 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/t/h/the-only-children-paisley-t-shirt.jpg
|
1520 |
+
[live] => 1
|
1521 |
+
[price] => 15.0000
|
1522 |
+
)
|
1523 |
+
|
1524 |
+
[19] => Array
|
1525 |
+
(
|
1526 |
+
[sku] => oc_lrg
|
1527 |
+
[upc] => 556f7a4b429b4
|
1528 |
+
[name] => The Only Children: Paisley T-Shirt
|
1529 |
+
[description] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
1530 |
+
# Double-needle sleeves and bottom hem
|
1531 |
+
[sms_name] => The Only Children: Paisley T-Shirt
|
1532 |
+
[sms_desc] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
1533 |
+
# Double-needle sleeves and bottom hem
|
1534 |
+
[url] => http://cornertysen.inmarkit.net/index.php/the-only-children-paisley-t-shirt-lrg.html
|
1535 |
+
[taxonomy_id] => fcc3465
|
1536 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/t/h/the-only-children-paisley-t-shirt.jpg
|
1537 |
+
[live] => 1
|
1538 |
+
[price] => 15.0000
|
1539 |
+
)
|
1540 |
+
|
1541 |
+
)
|
1542 |
+
|
1543 |
+
new: Array
|
1544 |
+
(
|
1545 |
+
[0] => Array
|
1546 |
+
(
|
1547 |
+
[sku] => zol
|
1548 |
+
[upc] => 556f7a4b42aab
|
1549 |
+
[name] => Zolof The Rock And Roll Destroyer: LOL Cat T-shirt
|
1550 |
+
[description] => <ul>
|
1551 |
+
<ul class="disc")
|
1552 |
+
<li> 6.1 oz. 100% preshrunk heavyweight cotton <br></li>
|
1553 |
+
<li> Shoulder-to-shoulder taping<br></li>
|
1554 |
+
<li>Double-needle sleeves and bottom hem<br></li>
|
1555 |
+
</ul>
|
1556 |
+
[sms_name] => Zolof The Rock And Roll Destroyer: LOL Cat T-shirt
|
1557 |
+
[sms_desc] => <ul>
|
1558 |
+
<ul class="disc")
|
1559 |
+
<li> 6.1 oz. 100% preshrunk heavyweight cotton <br></li>
|
1560 |
+
<li> Shoulder-to-shoulder taping<br></li>
|
1561 |
+
<li>Double-needle sleeves and bottom hem<br></li>
|
1562 |
+
</ul>
|
1563 |
+
[url] => http://cornertysen.inmarkit.net/index.php/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.html
|
1564 |
+
[taxonomy_id] => fcc3465
|
1565 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg
|
1566 |
+
[live] => 1
|
1567 |
+
[price] => 13.5000
|
1568 |
+
)
|
1569 |
+
|
1570 |
+
[1] => Array
|
1571 |
+
(
|
1572 |
+
[sku] => zol_g_sm
|
1573 |
+
[upc] => 556f7a4b42b88
|
1574 |
+
[name] => Zolof The Rock And Roll Destroyer: LOL Cat T-shirt
|
1575 |
+
[description] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
1576 |
+
# Shoulder-to-shoulder taping
|
1577 |
+
# Double-needle sleeves and bottom hem
|
1578 |
+
[sms_name] => Zolof The Rock And Roll Destroyer: LOL Cat T-shirt
|
1579 |
+
[sms_desc] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
1580 |
+
# Shoulder-to-shoulder taping
|
1581 |
+
# Double-needle sleeves and bottom hem
|
1582 |
+
[url] => http://cornertysen.inmarkit.net/index.php/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-g-sm.html
|
1583 |
+
[taxonomy_id] => fcc3465
|
1584 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg
|
1585 |
+
[live] => 1
|
1586 |
+
[price] => 13.5000
|
1587 |
+
)
|
1588 |
+
|
1589 |
+
[2] => Array
|
1590 |
+
(
|
1591 |
+
[sku] => zol_r_med
|
1592 |
+
[upc] => 556f7a4b42c71
|
1593 |
+
[name] => Zolof The Rock And Roll Destroyer: LOL Cat T-shirt
|
1594 |
+
[description] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
1595 |
+
# Shoulder-to-shoulder taping
|
1596 |
+
# Double-needle sleeves and bottom hem
|
1597 |
+
[sms_name] => Zolof The Rock And Roll Destroyer: LOL Cat T-shirt
|
1598 |
+
[sms_desc] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
1599 |
+
# Shoulder-to-shoulder taping
|
1600 |
+
# Double-needle sleeves and bottom hem
|
1601 |
+
[url] => http://cornertysen.inmarkit.net/index.php/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-r-med.html
|
1602 |
+
[taxonomy_id] => fcc3465
|
1603 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg
|
1604 |
+
[live] => 1
|
1605 |
+
[price] => 13.5000
|
1606 |
+
)
|
1607 |
+
|
1608 |
+
[3] => Array
|
1609 |
+
(
|
1610 |
+
[sku] => zol_g_med
|
1611 |
+
[upc] => 556f7a4b42d4a
|
1612 |
+
[name] => Zolof The Rock And Roll Destroyer: LOL Cat T-shirt
|
1613 |
+
[description] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
1614 |
+
# Shoulder-to-shoulder taping
|
1615 |
+
# Double-needle sleeves and bottom hem
|
1616 |
+
[sms_name] => Zolof The Rock And Roll Destroyer: LOL Cat T-shirt
|
1617 |
+
[sms_desc] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
1618 |
+
# Shoulder-to-shoulder taping
|
1619 |
+
# Double-needle sleeves and bottom hem
|
1620 |
+
[url] => http://cornertysen.inmarkit.net/index.php/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-g-med.html
|
1621 |
+
[taxonomy_id] => fcc3465
|
1622 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg
|
1623 |
+
[live] => 1
|
1624 |
+
[price] => 13.5000
|
1625 |
+
)
|
1626 |
+
|
1627 |
+
[4] => Array
|
1628 |
+
(
|
1629 |
+
[sku] => zol_r_lrg
|
1630 |
+
[upc] => 556f7a4b42e2d
|
1631 |
+
[name] => Zolof The Rock And Roll Destroyer: LOL Cat T-shirt
|
1632 |
+
[description] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
1633 |
+
# Shoulder-to-shoulder taping
|
1634 |
+
# Double-needle sleeves and bottom hem
|
1635 |
+
[sms_name] => Zolof The Rock And Roll Destroyer: LOL Cat T-shirt
|
1636 |
+
[sms_desc] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
1637 |
+
# Shoulder-to-shoulder taping
|
1638 |
+
# Double-needle sleeves and bottom hem
|
1639 |
+
[url] => http://cornertysen.inmarkit.net/index.php/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-r-lrg.html
|
1640 |
+
[taxonomy_id] => fcc3465
|
1641 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg
|
1642 |
+
[live] => 1
|
1643 |
+
[price] => 13.5000
|
1644 |
+
)
|
1645 |
+
|
1646 |
+
[5] => Array
|
1647 |
+
(
|
1648 |
+
[sku] => zol_g_lrg
|
1649 |
+
[upc] => 556f7a4b42f08
|
1650 |
+
[name] => Zolof The Rock And Roll Destroyer: LOL Cat T-shirt
|
1651 |
+
[description] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
1652 |
+
# Shoulder-to-shoulder taping
|
1653 |
+
# Double-needle sleeves and bottom hem
|
1654 |
+
[sms_name] => Zolof The Rock And Roll Destroyer: LOL Cat T-shirt
|
1655 |
+
[sms_desc] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
1656 |
+
# Shoulder-to-shoulder taping
|
1657 |
+
# Double-needle sleeves and bottom hem
|
1658 |
+
[url] => http://cornertysen.inmarkit.net/index.php/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-g-lrg.html
|
1659 |
+
[taxonomy_id] => fcc3465
|
1660 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg
|
1661 |
+
[live] => 1
|
1662 |
+
[price] => 13.5000
|
1663 |
+
)
|
1664 |
+
|
1665 |
+
[6] => Array
|
1666 |
+
(
|
1667 |
+
[sku] => ac674
|
1668 |
+
[upc] => 556f7a4b42feb
|
1669 |
+
[name] => SLR Camera Tripod
|
1670 |
+
[description] => Sturdy, lightweight tripods are designed to meet the needs of amateur and professional photographers and videographers.
|
1671 |
+
[sms_name] => SLR Camera Tripod
|
1672 |
+
[sms_desc] => Sturdy, lightweight tripods are designed to meet the needs of amateur and professional photographers and videographers.
|
1673 |
+
[url] => http://cornertysen.inmarkit.net/index.php/slr-camera-tripod.html
|
1674 |
+
[taxonomy_id] => fcc3465
|
1675 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/s/l/slr-camera-tripod.jpg
|
1676 |
+
[live] => 1
|
1677 |
+
[price] => 99.0000
|
1678 |
+
)
|
1679 |
+
|
1680 |
+
[7] => Array
|
1681 |
+
(
|
1682 |
+
[sku] => ac9003
|
1683 |
+
[upc] => 556f7a4b430d2
|
1684 |
+
[name] => Universal Camera Case
|
1685 |
+
[description] => A stylish digital camera demands stylish protection. This leather carrying case will defend your camera from the dings and scratches of travel and everyday use while looking smart all the time.
|
1686 |
+
[sms_name] => Universal Camera Case
|
1687 |
+
[sms_desc] => A stylish digital camera demands stylish protection. This leather carrying case will defend your camera from the dings and scratches of travel and everyday use while looking smart all the time.
|
1688 |
+
[url] => http://cornertysen.inmarkit.net/index.php/universal-camera-case.html
|
1689 |
+
[taxonomy_id] => fcc3465
|
1690 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/u/n/universal-camera-case.jpg
|
1691 |
+
[live] => 1
|
1692 |
+
[price] => 34.0000
|
1693 |
+
)
|
1694 |
+
|
1695 |
+
[8] => Array
|
1696 |
+
(
|
1697 |
+
[sku] => ac-66332
|
1698 |
+
[upc] => 556f7a4b431b8
|
1699 |
+
[name] => Universal Camera Charger
|
1700 |
+
[description] => Features foldable Flat Pin for Easy Storage/ Slim/ Lightweight Design and Smart Charging LED Indicator.
|
1701 |
+
[sms_name] => Universal Camera Charger
|
1702 |
+
[sms_desc] => Features foldable Flat Pin for Easy Storage/ Slim/ Lightweight Design and Smart Charging LED Indicator.
|
1703 |
+
[url] => http://cornertysen.inmarkit.net/index.php/universal-camera-charger.html
|
1704 |
+
[taxonomy_id] => fcc3465
|
1705 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/u/n/universal-camera-charger.jpg
|
1706 |
+
[live] => 1
|
1707 |
+
[price] => 19.0000
|
1708 |
+
)
|
1709 |
+
|
1710 |
+
[9] => Array
|
1711 |
+
(
|
1712 |
+
[sku] => ana
|
1713 |
+
[upc] => 556f7a4b432a1
|
1714 |
+
[name] => Anashria Womens Premier Leather Sandal
|
1715 |
+
[description] => Smooth kidskin upper in a dress platform wedge t-strap sandal style, with a round open toe, front and ankle adjustable buckles and tonal stitching accents. Ankle buckle features elastic panel. Smooth faux leather lining, cushioning faux leather and fabric topped insole. 1 inch matching leather and fabric wrapped midsole.
|
1716 |
+
[sms_name] => Anashria Womens Premier Leather Sandal
|
1717 |
+
[sms_desc] => Smooth kidskin upper in a dress platform wedge t-strap sandal style, with a round open toe, front and ankle adjustable buckles and tonal stitching accents. Ankle buckle features elastic panel. Smooth faux leather lining, cushioning faux leather and fabric topped insole. 1 inch matching leather and fabric wrapped midsole.
|
1718 |
+
[url] => http://cornertysen.inmarkit.net/index.php/anashria-womens-premier-leather-sandal.html
|
1719 |
+
[taxonomy_id] => fcc3465
|
1720 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/a/n/anashria-womens-premier-leather-sandal.jpg
|
1721 |
+
[live] => 1
|
1722 |
+
[price] => 41.9500
|
1723 |
+
)
|
1724 |
+
|
1725 |
+
[10] => Array
|
1726 |
+
(
|
1727 |
+
[sku] => zol_b_med
|
1728 |
+
[upc] => 556f7a4b43385
|
1729 |
+
[name] => Zolof The Rock And Roll Destroyer: LOL Cat T-shirt
|
1730 |
+
[description] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
1731 |
+
# Shoulder-to-shoulder taping
|
1732 |
+
# Double-needle sleeves and bottom hem
|
1733 |
+
[sms_name] => Zolof The Rock And Roll Destroyer: LOL Cat T-shirt
|
1734 |
+
[sms_desc] => # 6.1 oz. 100% preshrunk heavyweight cotton
|
1735 |
+
# Shoulder-to-shoulder taping
|
1736 |
+
# Double-needle sleeves and bottom hem
|
1737 |
+
[url] => http://cornertysen.inmarkit.net/index.php/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt-b-med.html
|
1738 |
+
[taxonomy_id] => fcc3465
|
1739 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/z/o/zolof-the-rock-and-roll-destroyer-lol-cat-t-shirt.jpg
|
1740 |
+
[live] => 1
|
1741 |
+
[price] => 13.5000
|
1742 |
+
)
|
1743 |
+
|
1744 |
+
[11] => Array
|
1745 |
+
(
|
1746 |
+
[sku] => apevia-black
|
1747 |
+
[upc] => 556f7a4b4345e
|
1748 |
+
[name] => Apevia Black X-Cruiser Case ATX Mid-Tower Case (Default)
|
1749 |
+
[description] => This superb, multi-functional Aspire X-Cruiser mid tower case is designed to follow Intel's recommendations to achieve the highest level of thermal performance. This gorgeous case outperforms most of the expensive chassis in the market, boasts an abundance of innovative features, yet carries a very affordable price tag. The Aspire X-Cruiser is fully loaded with everything you could possibly imagine that a great gaming case could have. With a built-in air duct on the side panel to funnel cool air towards the CPU, the fan-less X-Cruiser is specially designed to bring out the best performance in systems based on high-end processors.
|
1750 |
+
[sms_name] => Apevia Black X-Cruiser Case ATX Mid-Tower Case (Default)
|
1751 |
+
[sms_desc] => This superb, multi-functional Aspire X-Cruiser mid tower case is designed to follow Intel's recommendations to achieve the highest level of thermal performance. This gorgeous case outperforms most of the expensive chassis in the market, boasts an abundance of innovative features, yet carries a very affordable price tag. The Aspire X-Cruiser is fully loaded with everything you could possibly imagine that a great gaming case could have. With a built-in air duct on the side panel to funnel cool air towards the CPU, the fan-less X-Cruiser is specially designed to bring out the best performance in systems based on high-end processors.
|
1752 |
+
[url] => http://cornertysen.inmarkit.net/index.php/apevia-black-x-cruiser-case-atx-mid-tower-case.html
|
1753 |
+
[taxonomy_id] => fcc3465
|
1754 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/a/p/apevia-black-x-cruiser-case-atx-mid-tower-case-default.jpg
|
1755 |
+
[live] => 1
|
1756 |
+
[price] => 150.0000
|
1757 |
+
)
|
1758 |
+
|
1759 |
+
[12] => Array
|
1760 |
+
(
|
1761 |
+
[sku] => nzxtlexa
|
1762 |
+
[upc] => 556f7a4b43543
|
1763 |
+
[name] => NZXT Lexa Silver Aluminum ATX Mid-Tower Case (Default)
|
1764 |
+
[description] => Introducing the next advancement in case design and technology, the Lexa. Designed from ground up to be symmetrical, the Lexa is representative of the modern lifestyle design cues of today. The Lexa's minimalist and classy design fits perfectly under the NZXT Classic Series line.
|
1765 |
+
[sms_name] => NZXT Lexa Silver Aluminum ATX Mid-Tower Case (Default)
|
1766 |
+
[sms_desc] => Introducing the next advancement in case design and technology, the Lexa. Designed from ground up to be symmetrical, the Lexa is representative of the modern lifestyle design cues of today. The Lexa's minimalist and classy design fits perfectly under the NZXT Classic Series line.
|
1767 |
+
[url] => http://cornertysen.inmarkit.net/index.php/nzxt-lexa-silver-aluminum-atx-mid-tower-case.html
|
1768 |
+
[taxonomy_id] => fcc3465
|
1769 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/n/z/nzxt-lexa-silver-aluminum-atx-mid-tower-case-default.jpg
|
1770 |
+
[live] => 1
|
1771 |
+
[price] => 199.9900
|
1772 |
+
)
|
1773 |
+
|
1774 |
+
[13] => Array
|
1775 |
+
(
|
1776 |
+
[sku] => 2gbdimm
|
1777 |
+
[upc] => 556f7a4b43627
|
1778 |
+
[name] => Crucial 2GB PC4200 DDR2 533MHz Memory
|
1779 |
+
[description] => Crucial 2GB PC4200 DDR2 533MHz Memory
|
1780 |
+
Crucial Technologies is part of Micron, the largest DRAM manufacturer in the U.S. and one of the largest in the world. Because they actually manufacture memory, they have unparalleled expertise in the upgrade industry. Crucial is the only consumer memory upgrade supplier that is part of a major DRAM manufacturer.
|
1781 |
+
|
1782 |
+
Every single Crucial memory module is tested before it goes out their doors. Crucial chips are individually tested under varying temperatures, voltages, and operational conditions for performance and functionality.
|
1783 |
+
[sms_name] => Crucial 2GB PC4200 DDR2 533MHz Memory
|
1784 |
+
[sms_desc] => Crucial 2GB PC4200 DDR2 533MHz Memory
|
1785 |
+
Crucial Technologies is part of Micron, the largest DRAM manufacturer in the U.S. and one of the largest in the world. Because they actually manufacture memory, they have unparalleled expertise in the upgrade industry. Crucial is the only consumer memory upgrade supplier that is part of a major DRAM manufacturer.
|
1786 |
+
|
1787 |
+
Every single Crucial memory module is tested before it goes out their doors. Crucial chips are individually tested under varying temperatures, voltages, and operational conditions for performance and functionality.
|
1788 |
+
[url] => http://cornertysen.inmarkit.net/index.php/crucial-2gb-pc4200-ddr2-533mhz-memory.html
|
1789 |
+
[taxonomy_id] => fcc3465
|
1790 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/c/r/crucial-2gb-pc4200-ddr2-533mhz-memory.jpg
|
1791 |
+
[live] => 1
|
1792 |
+
[price] => 199.9900
|
1793 |
+
)
|
1794 |
+
|
1795 |
+
[14] => Array
|
1796 |
+
(
|
1797 |
+
[sku] => 1gbdimm
|
1798 |
+
[upc] => 556f7a4b4370d
|
1799 |
+
[name] => Crucial 1GB PC4200 DDR2 533MHz Memory
|
1800 |
+
[description] => Crucial 1024MB PC4200 DDR2 533MHz Memory
|
1801 |
+
Crucial Technologies is part of Micron, the largest DRAM manufacturer in the U.S. and one of the largest in the world. Because they actually manufacture memory, they have unparalleled expertise in the upgrade industry. Crucial is the only consumer memory upgrade supplier that is part of a major DRAM manufacturer.
|
1802 |
+
|
1803 |
+
Every single Crucial memory module is tested before it goes out their doors. Crucial chips are individually tested under varying temperatures, voltages, and operational conditions for performance and functionality.
|
1804 |
+
[sms_name] => Crucial 1GB PC4200 DDR2 533MHz Memory
|
1805 |
+
[sms_desc] => Crucial 1024MB PC4200 DDR2 533MHz Memory
|
1806 |
+
Crucial Technologies is part of Micron, the largest DRAM manufacturer in the U.S. and one of the largest in the world. Because they actually manufacture memory, they have unparalleled expertise in the upgrade industry. Crucial is the only consumer memory upgrade supplier that is part of a major DRAM manufacturer.
|
1807 |
+
|
1808 |
+
Every single Crucial memory module is tested before it goes out their doors. Crucial chips are individually tested under varying temperatures, voltages, and operational conditions for performance and functionality.
|
1809 |
+
[url] => http://cornertysen.inmarkit.net/index.php/crucial-1gb-pc4200-ddr2-533mhz-memory.html
|
1810 |
+
[taxonomy_id] => fcc3465
|
1811 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/c/r/crucial-1gb-pc4200-ddr2-533mhz-memory.jpg
|
1812 |
+
[live] => 1
|
1813 |
+
[price] => 150.9900
|
1814 |
+
)
|
1815 |
+
|
1816 |
+
[15] => Array
|
1817 |
+
(
|
1818 |
+
[sku] => 1yr_p_l
|
1819 |
+
[upc] => 556f7a4b438eb
|
1820 |
+
[name] => One Year Extended Warranty - Parts and Labor
|
1821 |
+
[description] => 1 Year Extended Warranty - Parts and Labor
|
1822 |
+
[sms_name] => One Year Extended Warranty - Parts and Labor
|
1823 |
+
[sms_desc] => 1 Year Extended Warranty - Parts and Labor
|
1824 |
+
[url] => http://cornertysen.inmarkit.net/index.php/1-year-extended-warranty-parts-and-labor.html
|
1825 |
+
[taxonomy_id] => fcc3465
|
1826 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/no_selection
|
1827 |
+
[live] => 1
|
1828 |
+
[price] => 150.0000
|
1829 |
+
)
|
1830 |
+
|
1831 |
+
[16] => Array
|
1832 |
+
(
|
1833 |
+
[sku] => 512dimm
|
1834 |
+
[upc] => 556f7a4b439da
|
1835 |
+
[name] => Crucial 512MB PC4200 DDR2 533MHz Memory
|
1836 |
+
[description] => Crucial 512MB PC4200 DDR2 533MHz Memory
|
1837 |
+
Crucial Technologies is part of Micron, the largest DRAM manufacturer in the U.S. and one of the largest in the world. Because they actually manufacture memory, they have unparalleled expertise in the upgrade industry. Crucial is the only consumer memory upgrade supplier that is part of a major DRAM manufacturer.
|
1838 |
+
|
1839 |
+
Every single Crucial memory module is tested before it goes out their doors. Crucial chips are individually tested under varying temperatures, voltages, and operational conditions for performance and functionality.
|
1840 |
+
[sms_name] => Crucial 512MB PC4200 DDR2 533MHz Memory
|
1841 |
+
[sms_desc] => Crucial 512MB PC4200 DDR2 533MHz Memory
|
1842 |
+
Crucial Technologies is part of Micron, the largest DRAM manufacturer in the U.S. and one of the largest in the world. Because they actually manufacture memory, they have unparalleled expertise in the upgrade industry. Crucial is the only consumer memory upgrade supplier that is part of a major DRAM manufacturer.
|
1843 |
+
|
1844 |
+
Every single Crucial memory module is tested before it goes out their doors. Crucial chips are individually tested under varying temperatures, voltages, and operational conditions for performance and functionality.
|
1845 |
+
[url] => http://cornertysen.inmarkit.net/index.php/crucial-512mb-pc4200-ddr2-533mhz-memory.html
|
1846 |
+
[taxonomy_id] => fcc3465
|
1847 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/c/r/crucial-512mb-pc4200-ddr2-533mhz-memory.jpg
|
1848 |
+
[live] => 1
|
1849 |
+
[price] => 99.9900
|
1850 |
+
)
|
1851 |
+
|
1852 |
+
[17] => Array
|
1853 |
+
(
|
1854 |
+
[sku] => 2yr_p_l
|
1855 |
+
[upc] => 556f7a4b43ab5
|
1856 |
+
[name] => Two Year Extended Warranty - Parts and Labor
|
1857 |
+
[description] => 2 Year Extended Warranty - Parts and Labor
|
1858 |
+
[sms_name] => Two Year Extended Warranty - Parts and Labor
|
1859 |
+
[sms_desc] => 2 Year Extended Warranty - Parts and Labor
|
1860 |
+
[url] => http://cornertysen.inmarkit.net/index.php/1-year-extended-warranty-parts-and-labor-1.html
|
1861 |
+
[taxonomy_id] => fcc3465
|
1862 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/no_selection
|
1863 |
+
[live] => 1
|
1864 |
+
[price] => 250.0000
|
1865 |
+
)
|
1866 |
+
|
1867 |
+
[18] => Array
|
1868 |
+
(
|
1869 |
+
[sku] => amdphenom
|
1870 |
+
[upc] => 556f7a4b43b9b
|
1871 |
+
[name] => AMD Phenom X4 9850 Black Ed. 2.50GHz Retail
|
1872 |
+
[description] => Overclocker’s dream! Deliver more sophisticated solutions with the leading-edge technology of AMD Phenom™ 9000 Series processor. Built from the ground up for true quad-core performance, AMD Phenom 9000 Series processors incorporate a unified high-speed L3 cache and high-speed DDR2 memory. Speed through complex multitasking, critical business productivity, advanced visual design and modeling and visually stunning digital media and entertainment. Whether it's a single solution or an enterprise system, AMD Phenom processors have the power to perform.
|
1873 |
+
[sms_name] => AMD Phenom X4 9850 Black Ed. 2.50GHz Retail
|
1874 |
+
[sms_desc] => Overclocker’s dream! Deliver more sophisticated solutions with the leading-edge technology of AMD Phenom™ 9000 Series processor. Built from the ground up for true quad-core performance, AMD Phenom 9000 Series processors incorporate a unified high-speed L3 cache and high-speed DDR2 memory. Speed through complex multitasking, critical business productivity, advanced visual design and modeling and visually stunning digital media and entertainment. Whether it's a single solution or an enterprise system, AMD Phenom processors have the power to perform.
|
1875 |
+
[url] => http://cornertysen.inmarkit.net/index.php/amd-phenom-x4-9850-black-ed-2-50ghz-retail.html
|
1876 |
+
[taxonomy_id] => fcc3465
|
1877 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/a/m/amd-phenom-x4-9850-black-ed-2-50ghz-retail.jpg
|
1878 |
+
[live] => 1
|
1879 |
+
[price] => 335.9900
|
1880 |
+
)
|
1881 |
+
|
1882 |
+
[19] => Array
|
1883 |
+
(
|
1884 |
+
[sku] => 3yr_p_l
|
1885 |
+
[upc] => 556f7a4b43c7d
|
1886 |
+
[name] => Three Year Extended Warranty - Parts and Labor
|
1887 |
+
[description] => 3 Year Extended Warranty - Parts and Labor
|
1888 |
+
[sms_name] => Three Year Extended Warranty - Parts and Labor
|
1889 |
+
[sms_desc] => 3 Year Extended Warranty - Parts and Labor
|
1890 |
+
[url] => http://cornertysen.inmarkit.net/index.php/1-year-extended-warranty-parts-and-labor-2.html
|
1891 |
+
[taxonomy_id] => fcc3465
|
1892 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/no_selection
|
1893 |
+
[live] => 1
|
1894 |
+
[price] => 325.0000
|
1895 |
+
)
|
1896 |
+
|
1897 |
+
)
|
1898 |
+
|
1899 |
+
new: Array
|
1900 |
+
(
|
1901 |
+
[0] => Array
|
1902 |
+
(
|
1903 |
+
[sku] => 226bw
|
1904 |
+
[upc] => 556f7a4b43d58
|
1905 |
+
[name] => 22" Syncmaster LCD Monitor
|
1906 |
+
[description] => The wide, 16:10 format of SAMSUNG's 226BW digital/Analog widescreen LCD monitor gives you plenty of room for all your computer applications and multiple images. DC 3000:1 contrast ratio creates crisp, easy-to-view images and gaming graphics, without ghosting or blurring. Complete with Microsoft® Vista® Premium certification and advanced dual interface for both analog digital video signals, the 226BW monitor is future-ready.
|
1907 |
+
[sms_name] => 22" Syncmaster LCD Monitor
|
1908 |
+
[sms_desc] => The wide, 16:10 format of SAMSUNG's 226BW digital/Analog widescreen LCD monitor gives you plenty of room for all your computer applications and multiple images. DC 3000:1 contrast ratio creates crisp, easy-to-view images and gaming graphics, without ghosting or blurring. Complete with Microsoft® Vista® Premium certification and advanced dual interface for both analog digital video signals, the 226BW monitor is future-ready.
|
1909 |
+
[url] => http://cornertysen.inmarkit.net/index.php/22-syncmaster-lcd-monitor.html
|
1910 |
+
[taxonomy_id] => fcc3465
|
1911 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/2/2/22-syncmaster-lcd-monitor.jpg
|
1912 |
+
[live] => 1
|
1913 |
+
[price] => 399.9900
|
1914 |
+
)
|
1915 |
+
|
1916 |
+
[1] => Array
|
1917 |
+
(
|
1918 |
+
[sku] => amda64
|
1919 |
+
[upc] => 556f7a4b43e50
|
1920 |
+
[name] => AMD A64 X2 3800+ 2.0GHz OEM
|
1921 |
+
[description] => Frustrated by staring at the hourglass icon as soon as you try to work on more than three programs at once, especially when you’re working with digital media? Increase your performance with the AMD Athlon™ 64 X2 dual core processor. Work or play with multiple programs without any stalling or waiting. Dual-core technology is like having two processors, and two working together is better and faster than one working alone. Do more in less time with the AMD Athlon 64 X2 dual-core processor.
|
1922 |
+
[sms_name] => AMD A64 X2 3800+ 2.0GHz OEM
|
1923 |
+
[sms_desc] => Frustrated by staring at the hourglass icon as soon as you try to work on more than three programs at once, especially when you’re working with digital media? Increase your performance with the AMD Athlon™ 64 X2 dual core processor. Work or play with multiple programs without any stalling or waiting. Dual-core technology is like having two processors, and two working together is better and faster than one working alone. Do more in less time with the AMD Athlon 64 X2 dual-core processor.
|
1924 |
+
[url] => http://cornertysen.inmarkit.net/index.php/amd-a64-x2-3800-2-0ghz-oem.html
|
1925 |
+
[taxonomy_id] => fcc3465
|
1926 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/a/m/amd-a64-x2-3800-2-0ghz-oem.jpg
|
1927 |
+
[live] => 1
|
1928 |
+
[price] => 98.9900
|
1929 |
+
)
|
1930 |
+
|
1931 |
+
[2] => Array
|
1932 |
+
(
|
1933 |
+
[sku] => 1tb7200
|
1934 |
+
[upc] => 556f7a4b43f29
|
1935 |
+
[name] => Western Digital - 1TB HD - 7200RPM
|
1936 |
+
[description] => 1 TB - 7200RPM, SATA 3.0Gb/s, 32MB Cache
|
1937 |
+
[sms_name] => Western Digital - 1TB HD - 7200RPM
|
1938 |
+
[sms_desc] => 1 TB - 7200RPM, SATA 3.0Gb/s, 32MB Cache
|
1939 |
+
[url] => http://cornertysen.inmarkit.net/index.php/1tb-7200rpm.html
|
1940 |
+
[taxonomy_id] => fcc3465
|
1941 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/w/e/western-digital-1tb-hd-7200rpm.jpg
|
1942 |
+
[live] => 1
|
1943 |
+
[price] => 399.0000
|
1944 |
+
)
|
1945 |
+
|
1946 |
+
[3] => Array
|
1947 |
+
(
|
1948 |
+
[sku] => 500gb7200
|
1949 |
+
[upc] => 556f7a4b43fdd
|
1950 |
+
[name] => Western Digital 500GB HD - 7200RPM
|
1951 |
+
[description] => 500GB- 7200RPM, SATA 3.0Gb/s, 32MB Cache
|
1952 |
+
[sms_name] => Western Digital 500GB HD - 7200RPM
|
1953 |
+
[sms_desc] => 500GB- 7200RPM, SATA 3.0Gb/s, 32MB Cache
|
1954 |
+
[url] => http://cornertysen.inmarkit.net/index.php/500gb-7200rpm.html
|
1955 |
+
[taxonomy_id] => fcc3465
|
1956 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/w/e/western-digital-500gb-hd-7200rpm.jpg
|
1957 |
+
[live] => 1
|
1958 |
+
[price] => 299.0000
|
1959 |
+
)
|
1960 |
+
|
1961 |
+
[4] => Array
|
1962 |
+
(
|
1963 |
+
[sku] => intelc2d
|
1964 |
+
[upc] => 556f7a4b440af
|
1965 |
+
[name] => Intel C2D E8400 3.0GHz Retail
|
1966 |
+
[description] => Intel® Core™2 Duo processor is the new brand name for our next-generation energy-efficient performance desktop and mobile processors. Formerly known by their codenames Conroe and Merom, the Intel® Core™2 processors for desktop and mobile computers are based on the Intel® Core™ microarchitecture, Intel's new industry-leading foundation for all mobile, desktop and server platforms moving forward.
|
1967 |
+
[sms_name] => Intel C2D E8400 3.0GHz Retail
|
1968 |
+
[sms_desc] => Intel® Core™2 Duo processor is the new brand name for our next-generation energy-efficient performance desktop and mobile processors. Formerly known by their codenames Conroe and Merom, the Intel® Core™2 processors for desktop and mobile computers are based on the Intel® Core™ microarchitecture, Intel's new industry-leading foundation for all mobile, desktop and server platforms moving forward.
|
1969 |
+
[url] => http://cornertysen.inmarkit.net/index.php/intel-c2d-e8400-3-0ghz-retail.html
|
1970 |
+
[taxonomy_id] => fcc3465
|
1971 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/i/n/intel-c2d-e8400-3-0ghz-retail.jpg
|
1972 |
+
[live] => 1
|
1973 |
+
[price] => 98.9900
|
1974 |
+
)
|
1975 |
+
|
1976 |
+
[5] => Array
|
1977 |
+
(
|
1978 |
+
[sku] => W2452T-TF
|
1979 |
+
[upc] => 556f7a4b44192
|
1980 |
+
[name] => 24" Widescreen Flat-Panel LCD Monitor
|
1981 |
+
[description] => With ultrafine 10,000:1 contrast and wide 170° viewing angles, this 24" widescreen LCD monitor delivers crystal-clear high-definition visuals for gaming and work projects. The DVI-D input lets you connect a DVD player or other digital video device.
|
1982 |
+
|
1983 |
+
Product Features:
|
1984 |
+
* Ultrafast 5 ms response time
|
1985 |
+
* Digital Fine 10,000:1 contrast ratio; 400 cd/m² brightness
|
1986 |
+
* 1920 x 1200 maximum resolution; wide 170° horizontal and vertical viewing angles
|
1987 |
+
|
1988 |
+
[sms_name] => 24" Widescreen Flat-Panel LCD Monitor
|
1989 |
+
[sms_desc] => With ultrafine 10,000:1 contrast and wide 170° viewing angles, this 24" widescreen LCD monitor delivers crystal-clear high-definition visuals for gaming and work projects. The DVI-D input lets you connect a DVD player or other digital video device.
|
1990 |
+
|
1991 |
+
Product Features:
|
1992 |
+
* Ultrafast 5 ms response time
|
1993 |
+
* Digital Fine 10,000:1 contrast ratio; 400 cd/m² brightness
|
1994 |
+
* 1920 x 1200 maximum resolution; wide 170° horizontal and vertical viewing angles
|
1995 |
+
|
1996 |
+
[url] => http://cornertysen.inmarkit.net/index.php/24-widescreen-flat-panel-lcd-monitor.html
|
1997 |
+
[taxonomy_id] => fcc3465
|
1998 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/2/4/24-widescreen-flat-panel-lcd-monitor.jpg
|
1999 |
+
[live] => 1
|
2000 |
+
[price] => 699.9900
|
2001 |
+
)
|
2002 |
+
|
2003 |
+
[6] => Array
|
2004 |
+
(
|
2005 |
+
[sku] => intelcore2extreme
|
2006 |
+
[upc] => 556f7a4b44278
|
2007 |
+
[name] => Intel Core 2 Extreme QX9775 3.20GHz Retail
|
2008 |
+
[description] => The new Intel® Core™2 Extreme processor QX9775 with hafnium-infused chip design delivers unrivaled gaming performance1 with four independent processing cores, 12 MB of cache, 1600 MHz Front Side Bus, and clock speeds of 3.2 GHz.The Intel® Core™2 Extreme processor is the world’s first quad core desktop processor, delivering the latest in cutting-edge processor technology and unprecedented performance across a wide range of applications and benchmarks. All Intel Core 2 Extreme processor QX9000 series are based on the industry-leading 45nm manufacturing technology, providing another giant leap forward on the road to multi-core and parallel computing.
|
2009 |
+
[sms_name] => Intel Core 2 Extreme QX9775 3.20GHz Retail
|
2010 |
+
[sms_desc] => The new Intel® Core™2 Extreme processor QX9775 with hafnium-infused chip design delivers unrivaled gaming performance1 with four independent processing cores, 12 MB of cache, 1600 MHz Front Side Bus, and clock speeds of 3.2 GHz.The Intel® Core™2 Extreme processor is the world’s first quad core desktop processor, delivering the latest in cutting-edge processor technology and unprecedented performance across a wide range of applications and benchmarks. All Intel Core 2 Extreme processor QX9000 series are based on the industry-leading 45nm manufacturing technology, providing another giant leap forward on the road to multi-core and parallel computing.
|
2011 |
+
[url] => http://cornertysen.inmarkit.net/index.php/intel-core-2-extreme-qx9775-3-20ghz-retail.html
|
2012 |
+
[taxonomy_id] => fcc3465
|
2013 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/i/n/intel-core-2-extreme-qx9775-3-20ghz-retail.jpg
|
2014 |
+
[live] => 1
|
2015 |
+
[price] => 2049.9900
|
2016 |
+
)
|
2017 |
+
|
2018 |
+
[7] => Array
|
2019 |
+
(
|
2020 |
+
[sku] => 500gb5400
|
2021 |
+
[upc] => 556f7a4b44355
|
2022 |
+
[name] => Seagate 500GB HD - 5400RPM
|
2023 |
+
[description] => 1 TB - 7200RPM, SATA 3.0Gb/s, 32MB Cache
|
2024 |
+
[sms_name] => Seagate 500GB HD - 5400RPM
|
2025 |
+
[sms_desc] => 1 TB - 7200RPM, SATA 3.0Gb/s, 32MB Cache
|
2026 |
+
[url] => http://cornertysen.inmarkit.net/index.php/500gb-5400rpm.html
|
2027 |
+
[taxonomy_id] => fcc3465
|
2028 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/s/e/seagate-500gb-hd-5400rpm.jpg
|
2029 |
+
[live] => 1
|
2030 |
+
[price] => 299.0000
|
2031 |
+
)
|
2032 |
+
|
2033 |
+
[8] => Array
|
2034 |
+
(
|
2035 |
+
[sku] => 250gb5400
|
2036 |
+
[upc] => 556f7a4b44440
|
2037 |
+
[name] => Seagate 250GB HD - 5400RPM
|
2038 |
+
[description] => 1 TB - 7200RPM, SATA 3.0Gb/s, 32MB Cache
|
2039 |
+
[sms_name] => Seagate 250GB HD - 5400RPM
|
2040 |
+
[sms_desc] => 1 TB - 7200RPM, SATA 3.0Gb/s, 32MB Cache
|
2041 |
+
[url] => http://cornertysen.inmarkit.net/index.php/250gb-5400rpm.html
|
2042 |
+
[taxonomy_id] => fcc3465
|
2043 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/s/e/seagate-250gb-hd-5400rpm.jpg
|
2044 |
+
[live] => 1
|
2045 |
+
[price] => 99.0000
|
2046 |
+
)
|
2047 |
+
|
2048 |
+
[9] => Array
|
2049 |
+
(
|
2050 |
+
[sku] => W1952TQ-TF
|
2051 |
+
[upc] => 556f7a4b44519
|
2052 |
+
[name] => 19" Widescreen Flat-Panel LCD Monitor
|
2053 |
+
[description] => Experience smooth gaming visuals and crystal-clear video with this 19" flat-panel LCD monitor that features an ultrafast 2 ms response time and sharp 10,000:1 contrast. The DVI-D with HDCP input lets you connect a DVD player or other digital video device.
|
2054 |
+
Product Features
|
2055 |
+
|
2056 |
+
* Ultrafast 2 ms response time
|
2057 |
+
* Digital Fine 10,000:1 contrast ratio; 300 cd/m² brightness
|
2058 |
+
* 1440 x 900 maximum resolution; wide 170° horizontal and vertical viewing angles
|
2059 |
+
|
2060 |
+
[sms_name] => 19" Widescreen Flat-Panel LCD Monitor
|
2061 |
+
[sms_desc] => Experience smooth gaming visuals and crystal-clear video with this 19" flat-panel LCD monitor that features an ultrafast 2 ms response time and sharp 10,000:1 contrast. The DVI-D with HDCP input lets you connect a DVD player or other digital video device.
|
2062 |
+
Product Features
|
2063 |
+
|
2064 |
+
* Ultrafast 2 ms response time
|
2065 |
+
* Digital Fine 10,000:1 contrast ratio; 300 cd/m² brightness
|
2066 |
+
* 1440 x 900 maximum resolution; wide 170° horizontal and vertical viewing angles
|
2067 |
+
|
2068 |
+
[url] => http://cornertysen.inmarkit.net/index.php/19-widescreen-flat-panel-lcd-monitor.html
|
2069 |
+
[taxonomy_id] => fcc3465
|
2070 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/1/9/19-widescreen-flat-panel-lcd-monitor.jpg
|
2071 |
+
[live] => 1
|
2072 |
+
[price] => 399.9900
|
2073 |
+
)
|
2074 |
+
|
2075 |
+
[10] => Array
|
2076 |
+
(
|
2077 |
+
[sku] => M9179LL
|
2078 |
+
[upc] => 556f7a4b445fc
|
2079 |
+
[name] => 30" Flat-Panel TFT-LCD Cinema HD Monitor
|
2080 |
+
[description] => * Digital (DVI), USB 2.0 and FireWire 400 inputs
|
2081 |
+
* Cinema HD delivers up to 16.7 million colors across a wide gamut for a breathtaking, vivid picture
|
2082 |
+
* ColorSync technology lets you create a custom profile to maintain consistent colors on the screen and in print
|
2083 |
+
* Single cable with breakout for DVI, USB and FireWire ports provides a tidy look while reducing clutter
|
2084 |
+
* Built-in, 2-port USB 2.0 hub to easily connect peripheral devices
|
2085 |
+
* User controls allow you to monitor display power, system sleep/wake, brightness and monitor tilt
|
2086 |
+
* Antiglare, hard-coat screen treatment
|
2087 |
+
* Wall-mountable with optional mounting kit (not included)
|
2088 |
+
* ENERGY STAR compliance assures a high standard of energy efficiency
|
2089 |
+
|
2090 |
+
[sms_name] => 30" Flat-Panel TFT-LCD Cinema HD Monitor
|
2091 |
+
[sms_desc] => * Digital (DVI), USB 2.0 and FireWire 400 inputs
|
2092 |
+
* Cinema HD delivers up to 16.7 million colors across a wide gamut for a breathtaking, vivid picture
|
2093 |
+
* ColorSync technology lets you create a custom profile to maintain consistent colors on the screen and in print
|
2094 |
+
* Single cable with breakout for DVI, USB and FireWire ports provides a tidy look while reducing clutter
|
2095 |
+
* Built-in, 2-port USB 2.0 hub to easily connect peripheral devices
|
2096 |
+
* User controls allow you to monitor display power, system sleep/wake, brightness and monitor tilt
|
2097 |
+
* Antiglare, hard-coat screen treatment
|
2098 |
+
* Wall-mountable with optional mounting kit (not included)
|
2099 |
+
* ENERGY STAR compliance assures a high standard of energy efficiency
|
2100 |
+
|
2101 |
+
[url] => http://cornertysen.inmarkit.net/index.php/30-flat-panel-tft-lcd-cinema-hd-monitor.html
|
2102 |
+
[taxonomy_id] => fcc3465
|
2103 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/3/0/30-flat-panel-tft-lcd-cinema-hd-monitor.jpg
|
2104 |
+
[live] => 1
|
2105 |
+
[price] => 699.9900
|
2106 |
+
)
|
2107 |
+
|
2108 |
+
[11] => Array
|
2109 |
+
(
|
2110 |
+
[sku] => VGN-TXN27N/BW
|
2111 |
+
[upc] => 556f7a4b45092
|
2112 |
+
[name] => Sony VAIO 11.1" Notebook PC
|
2113 |
+
[description] => <ul>
|
2114 |
+
<ul class="disc">
|
2115 |
+
<li>Processor: The Ultra Low Voltage Intel Core Solo U1500 processor offers a 1.33 GHz speed paired with a fast 533 MHz front-side bus and large 2 MB L2 cache. (An L2, or secondary, cache temporarily stores data; and a larger L2 cache can help speed up your system's performance. The FSB carries data between the CPU and RAM, and a faster front-side bus will deliver better overall performance.) The Core Solo processor delivers enhanced performance for today's demanding applications such as CAD tools, 3-D and 2-D modeling, video editing, digital music, digital photography and gaming. And Intel's Smart Cache technology enables smarter, more efficient cache and bus design for enhanced performance, responsiveness and power savings.</li>
|
2116 |
+
</ul>
|
2117 |
+
|
2118 |
+
[sms_name] => Sony VAIO 11.1" Notebook PC
|
2119 |
+
[sms_desc] => <ul>
|
2120 |
+
<ul class="disc">
|
2121 |
+
<li>Processor: The Ultra Low Voltage Intel Core Solo U1500 processor offers a 1.33 GHz speed paired with a fast 533 MHz front-side bus and large 2 MB L2 cache. (An L2, or secondary, cache temporarily stores data; and a larger L2 cache can help speed up your system's performance. The FSB carries data between the CPU and RAM, and a faster front-side bus will deliver better overall performance.) The Core Solo processor delivers enhanced performance for today's demanding applications such as CAD tools, 3-D and 2-D modeling, video editing, digital music, digital photography and gaming. And Intel's Smart Cache technology enables smarter, more efficient cache and bus design for enhanced performance, responsiveness and power savings.</li>
|
2122 |
+
</ul>
|
2123 |
+
|
2124 |
+
[url] => http://cornertysen.inmarkit.net/index.php/sony-vaio-vgn-txn27n-b-11-1-notebook-pc-1.html
|
2125 |
+
[taxonomy_id] => fcc3465
|
2126 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/s/o/sony-vaio-11-1-notebook-pc.jpg
|
2127 |
+
[live] => 1
|
2128 |
+
[price] => 0
|
2129 |
+
)
|
2130 |
+
|
2131 |
+
[12] => Array
|
2132 |
+
(
|
2133 |
+
[sku] => microsoftnatural
|
2134 |
+
[upc] => 556f7a4b45799
|
2135 |
+
[name] => Microsoft Natural Ergonomic Keyboard 4000
|
2136 |
+
[description] => The most comfortable ergonomic keyboard on the market! We just made a great deal for this Microsoft Natural ergonomic keyboard. And we know you’re going to love it. This newest addition to the world’s best selling line of ergonomic keyboards features a natural wrist alignment that will make your day! Just one touch allows you to perform a wealth of common but important tasks such as opening documents and replying to e-mail. The Microsoft Natural Model 4000 ergonomic keyboard also features an improved number pad with easy-to-reach symbols such left and right, equal sign and back space placed just above the number pad. Easy-access to the Internet. Multimedia keys. Lockable F keys and much more (see complete list of additional features below). Don’t you think it’s time to go natural? Microsoft’s Natural Ergonomic Model 4000 Keyboard. Available right here, for the best price!
|
2137 |
+
[sms_name] => Microsoft Natural Ergonomic Keyboard 4000
|
2138 |
+
[sms_desc] => The most comfortable ergonomic keyboard on the market! We just made a great deal for this Microsoft Natural ergonomic keyboard. And we know you’re going to love it. This newest addition to the world’s best selling line of ergonomic keyboards features a natural wrist alignment that will make your day! Just one touch allows you to perform a wealth of common but important tasks such as opening documents and replying to e-mail. The Microsoft Natural Model 4000 ergonomic keyboard also features an improved number pad with easy-to-reach symbols such left and right, equal sign and back space placed just above the number pad. Easy-access to the Internet. Multimedia keys. Lockable F keys and much more (see complete list of additional features below). Don’t you think it’s time to go natural? Microsoft’s Natural Ergonomic Model 4000 Keyboard. Available right here, for the best price!
|
2139 |
+
[url] => http://cornertysen.inmarkit.net/index.php/microsoft-natural-ergonomic-keyboard-4000.html
|
2140 |
+
[taxonomy_id] => fcc3465
|
2141 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/m/i/microsoft-natural-ergonomic-keyboard-4000.jpg
|
2142 |
+
[live] => 1
|
2143 |
+
[price] => 99.9900
|
2144 |
+
)
|
2145 |
+
|
2146 |
+
[13] => Array
|
2147 |
+
(
|
2148 |
+
[sku] => logitechcord
|
2149 |
+
[upc] => 556f7a4b4586c
|
2150 |
+
[name] => Logitech Cordless Optical Trackman
|
2151 |
+
[description] => Our most advanced trackball yet: a comfortable, cordless, finger-operated trackball that works where you need it. Save space and eliminate desktop clutter. Take advantage of extra buttons that help you navigate around Windows and the web more easily. And with Logitech's patented optical technology, you get virtually maintenance-free precision and smooth tracking.
|
2152 |
+
[sms_name] => Logitech Cordless Optical Trackman
|
2153 |
+
[sms_desc] => Our most advanced trackball yet: a comfortable, cordless, finger-operated trackball that works where you need it. Save space and eliminate desktop clutter. Take advantage of extra buttons that help you navigate around Windows and the web more easily. And with Logitech's patented optical technology, you get virtually maintenance-free precision and smooth tracking.
|
2154 |
+
[url] => http://cornertysen.inmarkit.net/index.php/microsoft-wireless-optical-mouse-5000.html
|
2155 |
+
[taxonomy_id] => fcc3465
|
2156 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/l/o/logitech-cordless-optical-trackman.jpg
|
2157 |
+
[live] => 1
|
2158 |
+
[price] => 79.9900
|
2159 |
+
)
|
2160 |
+
|
2161 |
+
[14] => Array
|
2162 |
+
(
|
2163 |
+
[sku] => logidinovo
|
2164 |
+
[upc] => 556f7a4b45939
|
2165 |
+
[name] => Logitech diNovo Edge Keyboard
|
2166 |
+
[description] => PerfectStroke key system for the ultimate keyboard feel. Bluetooth wireless and Li-Ion powered. Stylishly sleek with its elegant charging base and backlit controls, the diNovo Edge makes a bold statement.
|
2167 |
+
|
2168 |
+
An ideal partner for any high-end computer, the ultra-slim Logitech diNovo Edge delivers the ultimate in feel and response. The revolutionary TouchDisc with hyper-speed scrolling and pixel-perfect control makes trackpads obsolete. A slim recharging base doubles as a keyboard stand. Work longer thanks to the longer-lasting Li-Ion batteries, and more securely via Bluetooth wireless technology. Combine it with the world's most advanced mouse, the Logitech MX Revolution, for a premium desktop experience!
|
2169 |
+
[sms_name] => Logitech diNovo Edge Keyboard
|
2170 |
+
[sms_desc] => PerfectStroke key system for the ultimate keyboard feel. Bluetooth wireless and Li-Ion powered. Stylishly sleek with its elegant charging base and backlit controls, the diNovo Edge makes a bold statement.
|
2171 |
+
|
2172 |
+
An ideal partner for any high-end computer, the ultra-slim Logitech diNovo Edge delivers the ultimate in feel and response. The revolutionary TouchDisc with hyper-speed scrolling and pixel-perfect control makes trackpads obsolete. A slim recharging base doubles as a keyboard stand. Work longer thanks to the longer-lasting Li-Ion batteries, and more securely via Bluetooth wireless technology. Combine it with the world's most advanced mouse, the Logitech MX Revolution, for a premium desktop experience!
|
2173 |
+
[url] => http://cornertysen.inmarkit.net/index.php/logitech-dinovo-edge-keyboard.html
|
2174 |
+
[taxonomy_id] => fcc3465
|
2175 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/l/o/logitech-dinovo-edge-keyboard.jpg
|
2176 |
+
[live] => 1
|
2177 |
+
[price] => 239.9900
|
2178 |
+
)
|
2179 |
+
|
2180 |
+
[15] => Array
|
2181 |
+
(
|
2182 |
+
[sku] => micronmouse5000
|
2183 |
+
[upc] => 556f7a4b45a07
|
2184 |
+
[name] => Microsoft Wireless Optical Mouse 5000
|
2185 |
+
[description] => Experience smoother tracking and wireless freedom. Navigate with enhanced precision with this ergonomic High Definition Optical mouse. Easily enlarge and edit detail with the new Magnifier and enjoy more than six months of battery life.
|
2186 |
+
[sms_name] => Microsoft Wireless Optical Mouse 5000
|
2187 |
+
[sms_desc] => Experience smoother tracking and wireless freedom. Navigate with enhanced precision with this ergonomic High Definition Optical mouse. Easily enlarge and edit detail with the new Magnifier and enjoy more than six months of battery life.
|
2188 |
+
[url] => http://cornertysen.inmarkit.net/index.php/microsoft-wireless-optical-mouse-5001.html
|
2189 |
+
[taxonomy_id] => fcc3465
|
2190 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/m/i/microsoft-wireless-optical-mouse-5000.jpg
|
2191 |
+
[live] => 1
|
2192 |
+
[price] => 59.9900
|
2193 |
+
)
|
2194 |
+
|
2195 |
+
[16] => Array
|
2196 |
+
(
|
2197 |
+
[sku] => computer
|
2198 |
+
[upc] => 556f7a4b45af3
|
2199 |
+
[name] => Computer
|
2200 |
+
[description] => Make a computer
|
2201 |
+
[sms_name] => Computer
|
2202 |
+
[sms_desc] => Make a computer
|
2203 |
+
[url] => http://cornertysen.inmarkit.net/index.php/computer.html
|
2204 |
+
[taxonomy_id] => fcc3465
|
2205 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/c/o/computer.jpg
|
2206 |
+
[live] => 1
|
2207 |
+
[price] => 0
|
2208 |
+
)
|
2209 |
+
|
2210 |
+
[17] => Array
|
2211 |
+
(
|
2212 |
+
[sku] => computer_fixed
|
2213 |
+
[upc] => 556f7a4b45c00
|
2214 |
+
[name] => Gaming Computer
|
2215 |
+
[description] => Make a computer
|
2216 |
+
[sms_name] => Gaming Computer
|
2217 |
+
[sms_desc] => Make a computer
|
2218 |
+
[url] => http://cornertysen.inmarkit.net/index.php/gaming-computer.html
|
2219 |
+
[taxonomy_id] => fcc3465
|
2220 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/g/a/gaming-computer.jpg
|
2221 |
+
[live] => 1
|
2222 |
+
[price] => 0
|
2223 |
+
)
|
2224 |
+
|
2225 |
+
[18] => Array
|
2226 |
+
(
|
2227 |
+
[sku] => mycomputer
|
2228 |
+
[upc] => 556f7a4b45cf0
|
2229 |
+
[name] => My Computer
|
2230 |
+
[description] => test description
|
2231 |
+
[sms_name] => My Computer
|
2232 |
+
[sms_desc] => test description
|
2233 |
+
[url] => http://cornertysen.inmarkit.net/index.php/my-computer.html
|
2234 |
+
[taxonomy_id] => fcc3465
|
2235 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/m/y/my-computer.jpg
|
2236 |
+
[live] => 1
|
2237 |
+
[price] => 0
|
2238 |
+
)
|
2239 |
+
|
2240 |
+
[19] => Array
|
2241 |
+
(
|
2242 |
+
[sku] => HTC Touch Diamond
|
2243 |
+
[upc] => 556f7a4b45ddf
|
2244 |
+
[name] => HTC Touch Diamond
|
2245 |
+
[description] => Re-defining the perception of advanced mobile phones… the HTC Touch Diamond™ signals a giant leap forward in combining hi-tech prowess with intuitive usability and exhilarating design.
|
2246 |
+
|
2247 |
+
Featuring a sharp 2.8-inch touch screen housed within a stunning formation of brushed metal and flawless faceted edges, the HTC Touch Diamond is as beautiful to behold as it is to use.
|
2248 |
+
|
2249 |
+
With HTC’s vibrant touch-responsive user interface, TouchFLO™ 3D, and ultra-fast HSDPA internet connectivity… the HTC Touch Diamond offers a rich online experience to rival a notebook computer, allowing you to interact with Google, YouTube, and Wikipedia as freely as you would with a broadband connection.
|
2250 |
+
|
2251 |
+
Your contacts, favourite music, videos and photos are no longer an uninspired line of text. With TouchFLO 3D, album artwork, video stills and snapshots of your friends’ and family’s faces are brought to life for you to interact, play and launch at your fingertips.
|
2252 |
+
|
2253 |
+
A 3.2 megapixel auto-focus camera will help you capture the perfect moment in style and with a massive 4GB of internal storage you can keep all the files you need. The integrated ultra-sensitive GPS will help you find your destination as quickly and efficiently as a dedicated satellite navigation unit.
|
2254 |
+
|
2255 |
+
Style and substance in a phone are no longer mutually exclusive. The HTC Touch Diamond has arrived.
|
2256 |
+
[sms_name] => HTC Touch Diamond
|
2257 |
+
[sms_desc] => Re-defining the perception of advanced mobile phones… the HTC Touch Diamond™ signals a giant leap forward in combining hi-tech prowess with intuitive usability and exhilarating design.
|
2258 |
+
|
2259 |
+
Featuring a sharp 2.8-inch touch screen housed within a stunning formation of brushed metal and flawless faceted edges, the HTC Touch Diamond is as beautiful to behold as it is to use.
|
2260 |
+
|
2261 |
+
With HTC’s vibrant touch-responsive user interface, TouchFLO™ 3D, and ultra-fast HSDPA internet connectivity… the HTC Touch Diamond offers a rich online experience to rival a notebook computer, allowing you to interact with Google, YouTube, and Wikipedia as freely as you would with a broadband connection.
|
2262 |
+
|
2263 |
+
Your contacts, favourite music, videos and photos are no longer an uninspired line of text. With TouchFLO 3D, album artwork, video stills and snapshots of your friends’ and family’s faces are brought to life for you to interact, play and launch at your fingertips.
|
2264 |
+
|
2265 |
+
A 3.2 megapixel auto-focus camera will help you capture the perfect moment in style and with a massive 4GB of internal storage you can keep all the files you need. The integrated ultra-sensitive GPS will help you find your destination as quickly and efficiently as a dedicated satellite navigation unit.
|
2266 |
+
|
2267 |
+
Style and substance in a phone are no longer mutually exclusive. The HTC Touch Diamond has arrived.
|
2268 |
+
[url] => http://cornertysen.inmarkit.net/index.php/htc-touch-diamond.html
|
2269 |
+
[taxonomy_id] => fcc3465
|
2270 |
+
[icon] => http://cornertysen.inmarkit.net/media/catalog/product/h/t/htc-touch-diamond.jpg
|
2271 |
+
[live] => 1
|
2272 |
+
[price] => 750.0000
|
2273 |
+
)
|
2274 |
+
|
2275 |
+
)
|
2276 |
+
|
app/code/community/CueConnect/Cue/controllers/Adminhtml/SyncController.php
ADDED
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* CueConnect_Cue
|
4 |
+
*
|
5 |
+
* @category CueConnect
|
6 |
+
* @package CueConnect_Cue
|
7 |
+
* @copyright Copyright (c) 2015 Cue Connect
|
8 |
+
* @author Cue Connect (http://www.cueconnect.com)
|
9 |
+
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
10 |
+
*/
|
11 |
+
|
12 |
+
class CueConnect_Cue_Adminhtml_SyncController extends Mage_Adminhtml_Controller_Action
|
13 |
+
{
|
14 |
+
/**
|
15 |
+
* View export progression and last asked exports
|
16 |
+
*/
|
17 |
+
public function indexAction() {
|
18 |
+
// Render layout
|
19 |
+
$this->loadLayout();
|
20 |
+
$this->renderLayout();
|
21 |
+
}
|
22 |
+
|
23 |
+
/**
|
24 |
+
* Manually ask for an export
|
25 |
+
*/
|
26 |
+
public function exportAction() {
|
27 |
+
// Create a demand
|
28 |
+
$demand = Mage::getModel('cueconnect/demand');
|
29 |
+
$demand->setStatus($demand::STATUS_WAITING);
|
30 |
+
$demand->setCreatedAt(date('Y-m-d H:i:s'));
|
31 |
+
$demand->setUpdatedAt(date('Y-m-d H:i:s'));
|
32 |
+
$demand->save();
|
33 |
+
|
34 |
+
// Notice
|
35 |
+
Mage::getSingleton('adminhtml/session')->addSuccess("The catalog will be exported in a few moments. Pleae make sure that Magento cron is correctly configured.");
|
36 |
+
|
37 |
+
// Redirect to catalog
|
38 |
+
return $this->_redirect('cueconnect/adminhtml_sync/index');
|
39 |
+
}
|
40 |
+
}
|
app/code/community/CueConnect/Cue/etc/config.xml
ADDED
@@ -0,0 +1,176 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<modules>
|
4 |
+
<CueConnect_Cue>
|
5 |
+
<version>1.0.2</version>
|
6 |
+
</CueConnect_Cue>
|
7 |
+
</modules>
|
8 |
+
<global>
|
9 |
+
<models>
|
10 |
+
<cueconnect>
|
11 |
+
<class>CueConnect_Cue_Model</class>
|
12 |
+
<resourceModel>cueconnect_mysql4</resourceModel>
|
13 |
+
</cueconnect>
|
14 |
+
<cueconnect_mysql4>
|
15 |
+
<class>CueConnect_Cue_Model_Mysql4</class>
|
16 |
+
<entities>
|
17 |
+
<demand>
|
18 |
+
<table>cueconnect_demand</table>
|
19 |
+
</demand>
|
20 |
+
</entities>
|
21 |
+
</cueconnect_mysql4>
|
22 |
+
</models>
|
23 |
+
<blocks>
|
24 |
+
<cueconnect>
|
25 |
+
<class>CueConnect_Cue_Block</class>
|
26 |
+
</cueconnect>
|
27 |
+
<adminhtml>
|
28 |
+
<rewrite>
|
29 |
+
<catalog_product>CueConnect_Cue_Block_Adminhtml_Catalog_Product</catalog_product>
|
30 |
+
</rewrite>
|
31 |
+
</adminhtml>
|
32 |
+
</blocks>
|
33 |
+
<helpers>
|
34 |
+
<cueconnect>
|
35 |
+
<class>CueConnect_Cue_Helper</class>
|
36 |
+
</cueconnect>
|
37 |
+
</helpers>
|
38 |
+
<resources>
|
39 |
+
<cueconnect_setup>
|
40 |
+
<setup>
|
41 |
+
<module>CueConnect_Cue</module>
|
42 |
+
</setup>
|
43 |
+
</cueconnect_setup>
|
44 |
+
<cueconnect_write>
|
45 |
+
<connection>
|
46 |
+
<use>core_write</use>
|
47 |
+
</connection>
|
48 |
+
</cueconnect_write>
|
49 |
+
<cueconnect_read>
|
50 |
+
<connection>
|
51 |
+
<use>core_read</use>
|
52 |
+
</connection>
|
53 |
+
</cueconnect_read>
|
54 |
+
</resources>
|
55 |
+
<events>
|
56 |
+
<catalog_product_save_after>
|
57 |
+
<observers>
|
58 |
+
<cueconnect_cueconnect_observer_update_product>
|
59 |
+
<type>singleton</type>
|
60 |
+
<class>CueConnect_Cue_Model_Observer</class>
|
61 |
+
<method>updateProduct</method>
|
62 |
+
</cueconnect_cueconnect_observer_update_product>
|
63 |
+
</observers>
|
64 |
+
</catalog_product_save_after>
|
65 |
+
<catalog_product_delete_before>
|
66 |
+
<observers>
|
67 |
+
<cueconnect_cueconnect_observer_delete_product>
|
68 |
+
<type>singleton</type>
|
69 |
+
<class>CueConnect_Cue_Model_Observer</class>
|
70 |
+
<method>deleteProduct</method>
|
71 |
+
</cueconnect_cueconnect_observer_delete_product>
|
72 |
+
</observers>
|
73 |
+
</catalog_product_delete_before>
|
74 |
+
</events>
|
75 |
+
</global>
|
76 |
+
<frontend>
|
77 |
+
<layout>
|
78 |
+
<updates>
|
79 |
+
<cueconnect module="cueconnect">
|
80 |
+
<file>cueconnect.xml</file>
|
81 |
+
</cueconnect>
|
82 |
+
</updates>
|
83 |
+
</layout>
|
84 |
+
</frontend>
|
85 |
+
<admin>
|
86 |
+
<routers>
|
87 |
+
<cueconnect>
|
88 |
+
<use>admin</use>
|
89 |
+
<args>
|
90 |
+
<module>CueConnect_Cue</module>
|
91 |
+
<frontName>cueconnect</frontName>
|
92 |
+
</args>
|
93 |
+
</cueconnect>
|
94 |
+
</routers>
|
95 |
+
</admin>
|
96 |
+
<adminhtml>
|
97 |
+
<translate>
|
98 |
+
<modules>
|
99 |
+
<mage_adminhtml>
|
100 |
+
<files>
|
101 |
+
<cueconnect>CueConnect_Cue.csv</cueconnect>
|
102 |
+
</files>
|
103 |
+
</mage_adminhtml>
|
104 |
+
</modules>
|
105 |
+
</translate>
|
106 |
+
<acl>
|
107 |
+
<resources>
|
108 |
+
<all>
|
109 |
+
<title>Allow Everything</title>
|
110 |
+
</all>
|
111 |
+
<admin>
|
112 |
+
<children>
|
113 |
+
<system>
|
114 |
+
<children>
|
115 |
+
<config>
|
116 |
+
<children>
|
117 |
+
<cueconnect translate="title" module="cueconnect">
|
118 |
+
<title>Cue - All</title>
|
119 |
+
<sort_order>100</sort_order>
|
120 |
+
</cueconnect>
|
121 |
+
</children>
|
122 |
+
</config>
|
123 |
+
</children>
|
124 |
+
</system>
|
125 |
+
</children>
|
126 |
+
</admin>
|
127 |
+
</resources>
|
128 |
+
</acl>
|
129 |
+
<layout>
|
130 |
+
<updates>
|
131 |
+
<cueconnect module="cueconnect">
|
132 |
+
<file>cueconnect.xml</file>
|
133 |
+
</cueconnect>
|
134 |
+
</updates>
|
135 |
+
</layout>
|
136 |
+
<menu>
|
137 |
+
<catalog>
|
138 |
+
<children>
|
139 |
+
<cueconnect translate="title" module="cueconnect">
|
140 |
+
<title>Cue</title>
|
141 |
+
<action>cueconnect/adminhtml_sync/index</action>
|
142 |
+
<sort_order>200</sort_order>
|
143 |
+
</cueconnect>
|
144 |
+
</children>
|
145 |
+
</catalog>
|
146 |
+
</menu>
|
147 |
+
</adminhtml>
|
148 |
+
<crontab>
|
149 |
+
<jobs>
|
150 |
+
<cueconnect_daily>
|
151 |
+
<schedule>
|
152 |
+
<cron_expr>0 0 * * *</cron_expr>
|
153 |
+
</schedule>
|
154 |
+
<run>
|
155 |
+
<model>cueconnect/cueconnect::dailyExport</model>
|
156 |
+
</run>
|
157 |
+
</cueconnect_daily>
|
158 |
+
<cueconnect_manual>
|
159 |
+
<schedule>
|
160 |
+
<cron_expr>* * * * *</cron_expr>
|
161 |
+
</schedule>
|
162 |
+
<run>
|
163 |
+
<model>cueconnect/cueconnect::manualExport</model>
|
164 |
+
</run>
|
165 |
+
</cueconnect_manual>
|
166 |
+
</jobs>
|
167 |
+
</crontab>
|
168 |
+
<default>
|
169 |
+
<cueconnect>
|
170 |
+
<webservice>
|
171 |
+
<url>http://rapi.cueconnect.com/</url>
|
172 |
+
</webservice>
|
173 |
+
<taxomomy_id>fcc3465</taxomomy_id>
|
174 |
+
</cueconnect>
|
175 |
+
</default>
|
176 |
+
</config>
|
app/code/community/CueConnect/Cue/etc/system.xml
ADDED
@@ -0,0 +1,217 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" ?>
|
2 |
+
<config>
|
3 |
+
<sections>
|
4 |
+
<cueconnect module="cueconnect" translate="label">
|
5 |
+
<label>Cue</label>
|
6 |
+
<tab>catalog</tab>
|
7 |
+
<frontend_type>text</frontend_type>
|
8 |
+
<sort_order>300</sort_order>
|
9 |
+
<show_in_default>1</show_in_default>
|
10 |
+
<show_in_website>0</show_in_website>
|
11 |
+
<show_in_store>1</show_in_store>
|
12 |
+
<groups>
|
13 |
+
<cron translate="label">
|
14 |
+
<label>Cue API configuration</label>
|
15 |
+
<frontend_type>text</frontend_type>
|
16 |
+
<sort_order>2</sort_order>
|
17 |
+
<show_in_default>1</show_in_default>
|
18 |
+
<show_in_website>0</show_in_website>
|
19 |
+
<show_in_store>0</show_in_store>
|
20 |
+
<fields>
|
21 |
+
<enabled translate="label">
|
22 |
+
<label>Auto-sync</label>
|
23 |
+
<comment>Update Cue catalog automatically</comment>
|
24 |
+
<tooltip>If this option is enabled, Cue catalog will be updated automatically everyday. Please make sure that cron is configured for this Magento instance.</tooltip>
|
25 |
+
<show_in_default>1</show_in_default>
|
26 |
+
<show_in_website>1</show_in_website>
|
27 |
+
<show_in_store>1</show_in_store>
|
28 |
+
<frontend_type>select</frontend_type>
|
29 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
30 |
+
<sort_order>1</sort_order>
|
31 |
+
</enabled>
|
32 |
+
</fields>
|
33 |
+
</cron>
|
34 |
+
<enabled translate="label">
|
35 |
+
<label>Enable Cue for this store</label>
|
36 |
+
<frontend_type>text</frontend_type>
|
37 |
+
<sort_order>0</sort_order>
|
38 |
+
<show_in_default>0</show_in_default>
|
39 |
+
<show_in_website>0</show_in_website>
|
40 |
+
<show_in_store>1</show_in_store>
|
41 |
+
<fields>
|
42 |
+
<enabled translate="label">
|
43 |
+
<label>Enabled</label>
|
44 |
+
<tooltip>Enable Cue for this store</tooltip>
|
45 |
+
<show_in_default>1</show_in_default>
|
46 |
+
<show_in_website>1</show_in_website>
|
47 |
+
<show_in_store>1</show_in_store>
|
48 |
+
<frontend_type>select</frontend_type>
|
49 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
50 |
+
<sort_order>1</sort_order>
|
51 |
+
</enabled>
|
52 |
+
</fields>
|
53 |
+
</enabled>
|
54 |
+
<credentials translate="label">
|
55 |
+
<label>Cue credentials</label>
|
56 |
+
<frontend_type>text</frontend_type>
|
57 |
+
<sort_order>1</sort_order>
|
58 |
+
<show_in_default>0</show_in_default>
|
59 |
+
<show_in_website>0</show_in_website>
|
60 |
+
<show_in_store>1</show_in_store>
|
61 |
+
<fields>
|
62 |
+
<login translate="label">
|
63 |
+
<label>E-mail</label>
|
64 |
+
<tooltip>This field is required.</tooltip>
|
65 |
+
<show_in_default>1</show_in_default>
|
66 |
+
<show_in_website>1</show_in_website>
|
67 |
+
<show_in_store>1</show_in_store>
|
68 |
+
<frontend_type>text</frontend_type>
|
69 |
+
<sort_order>1</sort_order>
|
70 |
+
<validate>validate-email</validate>
|
71 |
+
</login>
|
72 |
+
<password translate="label">
|
73 |
+
<label>Password</label>
|
74 |
+
<tooltip>This field is required.</tooltip>
|
75 |
+
<show_in_default>1</show_in_default>
|
76 |
+
<show_in_website>1</show_in_website>
|
77 |
+
<show_in_store>1</show_in_store>
|
78 |
+
<frontend_type>password</frontend_type>
|
79 |
+
<sort_order>2</sort_order>
|
80 |
+
</password>
|
81 |
+
<api_key translate="label">
|
82 |
+
<label>API key</label>
|
83 |
+
<tooltip>Get your Cue API key from your Merchant Hub account</tooltip>
|
84 |
+
<show_in_default>1</show_in_default>
|
85 |
+
<show_in_website>1</show_in_website>
|
86 |
+
<show_in_store>1</show_in_store>
|
87 |
+
<frontend_type>text</frontend_type>
|
88 |
+
<sort_order>3</sort_order>
|
89 |
+
</api_key>
|
90 |
+
</fields>
|
91 |
+
</credentials>
|
92 |
+
<ob translate="label">
|
93 |
+
<label>Share</label>
|
94 |
+
<comment><![CDATA[<p>This setting enables/disables the automatic "Share" link insertion in the product details page. This link is added at the bottom of the details section.<br>If you wish to manually place the "Share" link, disable this setting and follow the steps in the Manual Setup Instructions section below in this page.</p>]]></comment>
|
95 |
+
<frontend_type>text</frontend_type>
|
96 |
+
<sort_order>2</sort_order>
|
97 |
+
<show_in_default>0</show_in_default>
|
98 |
+
<show_in_website>0</show_in_website>
|
99 |
+
<show_in_store>1</show_in_store>
|
100 |
+
<fields>
|
101 |
+
<enabled translate="label">
|
102 |
+
<label>Enabled</label>
|
103 |
+
<comment>Enable automatic "Share" link insertion</comment>
|
104 |
+
<tooltip>Set this to No for manual setup.</tooltip>
|
105 |
+
<show_in_default>1</show_in_default>
|
106 |
+
<show_in_website>1</show_in_website>
|
107 |
+
<show_in_store>1</show_in_store>
|
108 |
+
<frontend_type>select</frontend_type>
|
109 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
110 |
+
<sort_order>1</sort_order>
|
111 |
+
</enabled>
|
112 |
+
</fields>
|
113 |
+
</ob>
|
114 |
+
<favorite translate="label">
|
115 |
+
<label>Favorite</label>
|
116 |
+
<comment><![CDATA[<p>This setting enables/disables the automatic "Favorite" link insertion in the product details page. This link is added at the bottom of the details section.<br>If you wish to manually place the "Favorite" link, disable this setting and follow the steps in the Manual Setup Instructions section below in this pages.</p>]]></comment>
|
117 |
+
<frontend_type>text</frontend_type>
|
118 |
+
<sort_order>3</sort_order>
|
119 |
+
<show_in_default>0</show_in_default>
|
120 |
+
<show_in_website>0</show_in_website>
|
121 |
+
<show_in_store>1</show_in_store>
|
122 |
+
<fields>
|
123 |
+
<enabled translate="label">
|
124 |
+
<label>Enabled</label>
|
125 |
+
<comment>Enable automatic "Favorite" link insertion</comment>
|
126 |
+
<tooltip>Set this to No for manual setup.</tooltip>
|
127 |
+
<show_in_default>1</show_in_default>
|
128 |
+
<show_in_website>1</show_in_website>
|
129 |
+
<show_in_store>1</show_in_store>
|
130 |
+
<frontend_type>select</frontend_type>
|
131 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
132 |
+
<sort_order>1</sort_order>
|
133 |
+
</enabled>
|
134 |
+
</fields>
|
135 |
+
</favorite>
|
136 |
+
<collection translate="label">
|
137 |
+
<label>My Cue</label>
|
138 |
+
<comment><![CDATA[<p>This setting enables/disables the automatic "My Cue" link insertion in the header.<br>If you wish to manually place the "My Cue" link, disable this setting and follow the steps in the Manual Setup Instructions section below in this page.</p>]]></comment>
|
139 |
+
<frontend_type>text</frontend_type>
|
140 |
+
<sort_order>4</sort_order>
|
141 |
+
<show_in_default>0</show_in_default>
|
142 |
+
<show_in_website>1</show_in_website>
|
143 |
+
<show_in_store>1</show_in_store>
|
144 |
+
<fields>
|
145 |
+
<enabled translate="label">
|
146 |
+
<label>Enabled</label>
|
147 |
+
<comment>Enable automatic "My Cue" link insertion</comment>
|
148 |
+
<tooltip>Set this to No for manual setup. Visit our extension's user guide to personalize "My Cue" link display.</tooltip>
|
149 |
+
<show_in_default>1</show_in_default>
|
150 |
+
<show_in_website>1</show_in_website>
|
151 |
+
<show_in_store>1</show_in_store>
|
152 |
+
<frontend_type>select</frontend_type>
|
153 |
+
<source_model>adminhtml/system_config_source_yesno</source_model>
|
154 |
+
<sort_order>1</sort_order>
|
155 |
+
</enabled>
|
156 |
+
</fields>
|
157 |
+
</collection>
|
158 |
+
<setup translate="label">
|
159 |
+
<label>Manual Setup Instructions</label>
|
160 |
+
<comment><![CDATA[
|
161 |
+
<strong>Step 1. Implement "My Cue" Link</strong>
|
162 |
+
|
163 |
+
<p>Copy the <a> tag and paste it in the theme's source code where you wish the "My Cue" link to appear:</p>
|
164 |
+
|
165 |
+
<div class="reg_main" style="padding:0 20px;margin-bottom: 20px">
|
166 |
+
<textarea readonly="readonly" style="width: 80%; height: 50px;">
|
167 |
+
|
168 |
+
<a class="cue-stream"></a>
|
169 |
+
|
170 |
+
</textarea>
|
171 |
+
</div>
|
172 |
+
|
173 |
+
<div style="padding:0 20px;margin-bottom: 20px; color: crimson; font-size: 12px;">Important: <br>
|
174 |
+
We recommend that you place the link in your header or menu. <br>
|
175 |
+
The content of the link will be retrieved from your profile
|
176 |
+
(You can leave the title of the link as "My Cue" or insert the name of your store in between the words "My" and "Cue")<br>
|
177 |
+
You can replace the <a> by any HTML tag that fit your design better.<br>
|
178 |
+
</div>
|
179 |
+
|
180 |
+
<strong>Step 2. Implement Favorite and Share Widget</strong>
|
181 |
+
|
182 |
+
<p>Copy the <div> tags and paste them in the source code of the item details page where you wish "Share" and "Favorite" buttons to
|
183 |
+
appear in the page:</p>
|
184 |
+
|
185 |
+
<div class="reg_main" style="padding:0 20px;margin-bottom: 20px">
|
186 |
+
<textarea readonly="readonly" style="width: 80%; height: 60px;">
|
187 |
+
|
188 |
+
<div class="cue-onebutton" data-imisku="<?php echo $this->htmlEscape($_product->getSku()) ?>"></div>
|
189 |
+
<div class="cue-cueit" data-imisku="<?php echo $this->htmlEscape($_product->getSku()) ?>"></div>
|
190 |
+
|
191 |
+
</textarea>
|
192 |
+
</div>
|
193 |
+
|
194 |
+
<p>Please also note that you can manuallly set up the "Share" and "Favorite" links separately from each other. For example, you can set "Share" to be automatically created by the extension (set "Enabled" to "Yes" in the "Share" tab), and place "Favorite" wherever you wish in your page by setting "Enabled" to "No" in the "Favorite" tab and then copying the corresponding "div" tag in your theme source code:</p>
|
195 |
+
|
196 |
+
<div class="reg_main" style="padding:0 20px;margin-bottom: 20px">
|
197 |
+
<textarea readonly="readonly" style="width: 80%; height: 50px;">
|
198 |
+
|
199 |
+
<div class="cue-cueit" data-imisku="<?php echo $this->htmlEscape($_product->getSku()) ?>"></div>
|
200 |
+
|
201 |
+
</textarea>
|
202 |
+
</div>
|
203 |
+
|
204 |
+
<div style="padding:0 20px;margin-bottom: 20px; color: crimson; font-size: 12px;">Important: <br>
|
205 |
+
After you install Cue’s social sharing utility, we recommend to remove your existing social buttons/features. <br>
|
206 |
+
</div>
|
207 |
+
]]></comment>
|
208 |
+
<frontend_type>text</frontend_type>
|
209 |
+
<sort_order>5</sort_order>
|
210 |
+
<show_in_default>0</show_in_default>
|
211 |
+
<show_in_website>0</show_in_website>
|
212 |
+
<show_in_store>1</show_in_store>
|
213 |
+
</setup>
|
214 |
+
</groups>
|
215 |
+
</cueconnect>
|
216 |
+
</sections>
|
217 |
+
</config>
|
app/code/community/CueConnect/Cue/sql/cueconnect_setup/mysql4-install-1.0.0.php
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
$installer = $this;
|
3 |
+
$installer->startSetup();
|
4 |
+
$installer->run("
|
5 |
+
-- DROP TABLE IF EXISTS {$this->getTable('cueconnect/demand')};
|
6 |
+
CREATE TABLE {$this->getTable('cueconnect/demand')} (
|
7 |
+
`id` int(11) unsigned NOT NULL auto_increment,
|
8 |
+
`status` int(11) NOT NULL default '1',
|
9 |
+
`created_at` datetime NULL,
|
10 |
+
`updated_at` datetime NULL,
|
11 |
+
PRIMARY KEY (`id`)
|
12 |
+
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
13 |
+
");
|
14 |
+
|
15 |
+
$installer->endSetup();
|
app/design/adminhtml/default/default/layout/cueconnect.xml
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<layout version="0.1.0">
|
3 |
+
<cueconnect_adminhtml_sync_index>
|
4 |
+
<reference name="content">
|
5 |
+
<block type="cueconnect/adminhtml_index" name="index" template="cueconnect/index.phtml">
|
6 |
+
<block type="cueconnect/adminhtml_progress" name="progress" template="cueconnect/progress.phtml" />
|
7 |
+
</block>
|
8 |
+
</reference>
|
9 |
+
</cueconnect_adminhtml_sync_index>
|
10 |
+
</layout>
|
app/design/adminhtml/default/default/template/cueconnect/index.phtml
ADDED
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div class="content-header">
|
2 |
+
<table cellspacing="0" class="grid-header">
|
3 |
+
<tr>
|
4 |
+
<td><h3>Cue</h3></td>
|
5 |
+
<td class="a-right">
|
6 |
+
<button style="" onclick="setLocation('<?php echo Mage::helper("adminhtml")->getUrl('cueconnect/adminhtml_sync/export'); ?>')" class="scalable" type="button" title="Export catalog to Cue">
|
7 |
+
<span><span><span>Export catalog to Cue</span></span></span>
|
8 |
+
</button>
|
9 |
+
</td>
|
10 |
+
</tr>
|
11 |
+
</table>
|
12 |
+
</div>
|
13 |
+
|
14 |
+
<div class="entry-edit">
|
15 |
+
<div class="entry-edit-head">
|
16 |
+
<h4 class="icon-head head-customer-view">Last or current export</h4>
|
17 |
+
</div>
|
18 |
+
|
19 |
+
<fieldset>
|
20 |
+
<?php echo $this->getChildHtml('progress'); ?>
|
21 |
+
</fieldset>
|
22 |
+
</div>
|
23 |
+
|
24 |
+
<div class="entry-edit">
|
25 |
+
<div class="entry-edit-head">
|
26 |
+
<h4 class="icon-head head-customer-view">Scheduled manual export(s)</h4>
|
27 |
+
</div>
|
28 |
+
|
29 |
+
<fieldset>
|
30 |
+
<?php $demands = $this->getDemands(); ?>
|
31 |
+
<?php if (count($demands)): ?>
|
32 |
+
<table cellspacing="0" style="width: 100%;">
|
33 |
+
<thead>
|
34 |
+
<tr class="headings">
|
35 |
+
<th><strong>Created</strong></th>
|
36 |
+
<th><strong>Updated</strong></th>
|
37 |
+
<th><strong>Status</strong></th>
|
38 |
+
</tr>
|
39 |
+
</thead>
|
40 |
+
<tbody>
|
41 |
+
<?php foreach ($demands as $demand): ?>
|
42 |
+
<tr>
|
43 |
+
<td><?php echo $demand->getCreatedAt(); ?></td>
|
44 |
+
<td><?php echo $demand->getUpdatedAt(); ?></td>
|
45 |
+
<td>
|
46 |
+
<?php if ($demand->getStatus() == $demand::STATUS_WAITING): ?>
|
47 |
+
<span>Awaiting</span>
|
48 |
+
<?php elseif ($demand->getStatus() == $demand::STATUS_PROGRESSING): ?>
|
49 |
+
<span>Progressing</span>
|
50 |
+
<?php elseif ($demand->getStatus() == $demand::STATUS_DONE): ?>
|
51 |
+
<span>Done</span>
|
52 |
+
<?php elseif ($demand->getStatus() == $demand::STATUS_ERROR): ?>
|
53 |
+
<span>Error</span>
|
54 |
+
<?php endif; ?>
|
55 |
+
</td>
|
56 |
+
</tr>
|
57 |
+
<?php endforeach; ?>
|
58 |
+
</tbody>
|
59 |
+
</table>
|
60 |
+
<?php else: ?>
|
61 |
+
<span>There is no manual exports scheduled.</span>
|
62 |
+
<?php endif; ?>
|
63 |
+
</fieldset>
|
64 |
+
</div>
|
65 |
+
|
66 |
+
<script type="text/javascript">
|
67 |
+
// Refresh page to check current export
|
68 |
+
new PeriodicalExecuter(function(pe) {
|
69 |
+
window.location.reload();
|
70 |
+
}, 10);
|
71 |
+
</script>
|
app/design/adminhtml/default/default/template/cueconnect/index.phtml~
ADDED
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div class="content-header">
|
2 |
+
<table cellspacing="0" class="grid-header">
|
3 |
+
<tr>
|
4 |
+
<td><h3>InMarkit</h3></td>
|
5 |
+
<td class="a-right">
|
6 |
+
<button style="" onclick="setLocation('<?php echo Mage::helper("adminhtml")->getUrl('inmarkit/adminhtml_sync/export'); ?>')" class="scalable" type="button" title="Export catalog to InMarkit">
|
7 |
+
<span><span><span>Export catalog to InMarkit</span></span></span>
|
8 |
+
</button>
|
9 |
+
</td>
|
10 |
+
</tr>
|
11 |
+
</table>
|
12 |
+
</div>
|
13 |
+
|
14 |
+
<div class="entry-edit">
|
15 |
+
<div class="entry-edit-head">
|
16 |
+
<h4 class="icon-head head-customer-view">Last or current export</h4>
|
17 |
+
</div>
|
18 |
+
|
19 |
+
<fieldset>
|
20 |
+
<?php echo $this->getChildHtml('progress'); ?>
|
21 |
+
</fieldset>
|
22 |
+
</div>
|
23 |
+
|
24 |
+
<div class="entry-edit">
|
25 |
+
<div class="entry-edit-head">
|
26 |
+
<h4 class="icon-head head-customer-view">Scheduled manual export(s)</h4>
|
27 |
+
</div>
|
28 |
+
|
29 |
+
<fieldset>
|
30 |
+
<?php $demands = $this->getDemands(); ?>
|
31 |
+
<?php if (count($demands)): ?>
|
32 |
+
<table cellspacing="0" style="width: 100%;">
|
33 |
+
<thead>
|
34 |
+
<tr class="headings">
|
35 |
+
<th><strong>Created</strong></th>
|
36 |
+
<th><strong>Updated</strong></th>
|
37 |
+
<th><strong>Status</strong></th>
|
38 |
+
</tr>
|
39 |
+
</thead>
|
40 |
+
<tbody>
|
41 |
+
<?php foreach ($demands as $demand): ?>
|
42 |
+
<tr>
|
43 |
+
<td><?php echo $demand->getCreatedAt(); ?></td>
|
44 |
+
<td><?php echo $demand->getUpdatedAt(); ?></td>
|
45 |
+
<td>
|
46 |
+
<?php if ($demand->getStatus() == $demand::STATUS_WAITING): ?>
|
47 |
+
<span>Awaiting</span>
|
48 |
+
<?php elseif ($demand->getStatus() == $demand::STATUS_PROGRESSING): ?>
|
49 |
+
<span>Progressing</span>
|
50 |
+
<?php elseif ($demand->getStatus() == $demand::STATUS_DONE): ?>
|
51 |
+
<span>Done</span>
|
52 |
+
<?php elseif ($demand->getStatus() == $demand::STATUS_ERROR): ?>
|
53 |
+
<span>Error</span>
|
54 |
+
<?php endif; ?>
|
55 |
+
</td>
|
56 |
+
</tr>
|
57 |
+
<?php endforeach; ?>
|
58 |
+
</tbody>
|
59 |
+
</table>
|
60 |
+
<?php else: ?>
|
61 |
+
<span>There is no manual exports scheduled.</span>
|
62 |
+
<?php endif; ?>
|
63 |
+
</fieldset>
|
64 |
+
</div>
|
65 |
+
|
66 |
+
<script type="text/javascript">
|
67 |
+
// Refresh page to check current export
|
68 |
+
new PeriodicalExecuter(function(pe) {
|
69 |
+
window.location.reload();
|
70 |
+
}, 10);
|
71 |
+
</script>
|
app/design/adminhtml/default/default/template/cueconnect/progress.phtml
ADDED
@@ -0,0 +1,88 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php $export = $this->getLastExportProgress(); ?>
|
2 |
+
<?php if ($export && is_object($export)): ?>
|
3 |
+
<table cellspacing="5" class="table-stats">
|
4 |
+
<tbody>
|
5 |
+
<tr>
|
6 |
+
<td><strong>Started :</strong></td>
|
7 |
+
<td><?php echo strftime("%B, %e %G %X", strtotime($export->started_at)); ?></td>
|
8 |
+
</tr>
|
9 |
+
<tr>
|
10 |
+
<td><strong>Status :</strong></td>
|
11 |
+
<td><?php echo ucfirst($export->status); ?></td>
|
12 |
+
</tr>
|
13 |
+
<?php if (isset($export->message) && $export->message): ?>
|
14 |
+
<tr>
|
15 |
+
<td><strong>Message :</strong></td>
|
16 |
+
<td><?php echo $export->message; ?></td>
|
17 |
+
</tr>
|
18 |
+
<?php endif; ?>
|
19 |
+
<?php if (isset($export->store) && $export->store): ?>
|
20 |
+
<tr>
|
21 |
+
<td><strong>Store :</strong></td>
|
22 |
+
<td><?php echo $export->store; ?></td>
|
23 |
+
</tr>
|
24 |
+
<?php endif; ?>
|
25 |
+
<?php if (isset($export->end_at) && $export->end_at): ?>
|
26 |
+
<tr>
|
27 |
+
<td><strong>Finished :</strong></td>
|
28 |
+
<td><?php echo strftime("%B, %e %G %X", strtotime($export->end_at)); ?></td>
|
29 |
+
</tr>
|
30 |
+
<?php endif; ?>
|
31 |
+
<?php if (isset($export->total_products)): ?>
|
32 |
+
<tr>
|
33 |
+
<td><strong>Total products in catalog :</strong></td>
|
34 |
+
<td><?php echo $export->total_products; ?></td>
|
35 |
+
</tr>
|
36 |
+
<tr>
|
37 |
+
<td><strong>Total products created :</strong></td>
|
38 |
+
<td><?php echo $export->total_products_created; ?> / <?php echo $export->total_products_to_create; ?></td>
|
39 |
+
</tr>
|
40 |
+
<tr>
|
41 |
+
<td><strong>Total products updated :</strong></td>
|
42 |
+
<td><?php echo $export->total_products_updated; ?> / <?php echo $export->total_products_to_update; ?></td>
|
43 |
+
</tr>
|
44 |
+
<tr>
|
45 |
+
<td><strong>Total products deleted :</strong></td>
|
46 |
+
<td><?php echo $export->total_products_deleted; ?> / <?php echo $export->total_products_to_delete; ?></td>
|
47 |
+
</tr>
|
48 |
+
<?php endif; ?>
|
49 |
+
</tbody>
|
50 |
+
</table>
|
51 |
+
|
52 |
+
<?php if ($export->status == "progressing" || $export->status == "done"): ?>
|
53 |
+
<div class="progress-bar-container">
|
54 |
+
<div class="progress-bar">
|
55 |
+
<div class="completion"><?php echo $export->completion; ?>%</div>
|
56 |
+
</div>
|
57 |
+
<div class="progress-message"><span><?php echo $export->message; ?></span></div>
|
58 |
+
</div>
|
59 |
+
<?php endif; ?>
|
60 |
+
|
61 |
+
<style>
|
62 |
+
.table-stats {
|
63 |
+
margin-bottom: 10px;
|
64 |
+
}
|
65 |
+
.progress-bar-container .progress-bar {
|
66 |
+
width: 100%;
|
67 |
+
height: 30px;
|
68 |
+
line-height: 30px;
|
69 |
+
border: solid 1px #333333;
|
70 |
+
background: #ffffff;
|
71 |
+
}
|
72 |
+
.progress-bar-container .progress-bar .completion {
|
73 |
+
background: #009900;
|
74 |
+
width: <?php echo $export->completion; ?>%;
|
75 |
+
text-align: center;
|
76 |
+
color: #ffffff;
|
77 |
+
font-weight: bold;
|
78 |
+
}
|
79 |
+
.progress-bar-container .progress-message {
|
80 |
+
margin-top: 5px;
|
81 |
+
text-align: center;
|
82 |
+
font-style: italic;
|
83 |
+
}
|
84 |
+
</style>
|
85 |
+
<?php else: ?>
|
86 |
+
<span>Unable to find any export log.</span>
|
87 |
+
<?php endif; ?>
|
88 |
+
|
app/design/frontend/rwd/default/layout/cueconnect.xml
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<layout version="0.1.2">
|
3 |
+
<catalog_product_view>
|
4 |
+
<reference name="content">
|
5 |
+
<reference name="product.info.extrahint">
|
6 |
+
<block type="cueconnect/share" name="product.info.cueconnect.share" template="cueconnect/share.phtml" />
|
7 |
+
<block type="cueconnect/favorite" name="product.info.cueconnect.favorite" template="cueconnect/favorite.phtml" />
|
8 |
+
</reference>
|
9 |
+
</reference>
|
10 |
+
</catalog_product_view>
|
11 |
+
<default>
|
12 |
+
<reference name="root">
|
13 |
+
<reference name="header">
|
14 |
+
<reference name="top.container">
|
15 |
+
<block type="cueconnect/collection" name="cueconnect.button.collection" template="cueconnect/collection.phtml" />
|
16 |
+
</reference>
|
17 |
+
</reference>
|
18 |
+
<reference name="after_body_start">
|
19 |
+
<block type="cueconnect/js" name="cueconnect.js" template="cueconnect/js.phtml" />
|
20 |
+
</reference>
|
21 |
+
</reference>
|
22 |
+
</default>
|
23 |
+
</layout>
|
app/design/frontend/rwd/default/template/cueconnect/collection.phtml
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php if ($this->isEnabled() && $this->isCollectionEnabled()): ?>
|
2 |
+
<div id="cue-stream-container" style="float: right;">
|
3 |
+
<a class="cue-stream"></a>
|
4 |
+
</div>
|
5 |
+
<div class="clearer"></div>
|
6 |
+
<?php endif; ?>
|
app/design/frontend/rwd/default/template/cueconnect/favorite.phtml
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
<?php // Todo: Rename template file name ?>
|
2 |
+
<?php if ($this->isEnabled() && $this->isFavoriteEnabled()): ?>
|
3 |
+
<div class="cue-cueit" data-imisku="<?php echo $this->getSku(); ?>"></div>
|
4 |
+
<?php endif; ?>
|
app/design/frontend/rwd/default/template/cueconnect/js.phtml
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php // Todo: Update the JS snippet code ?>
|
2 |
+
<?php if ($this->isEnabled() && $this->getRetailerId()): ?>
|
3 |
+
<script type="text/javascript">
|
4 |
+
function executeOnLoad(script) {
|
5 |
+
var script = script || this;
|
6 |
+
if (!script.readyState || script.readyState == "loaded" || script.readyState == "complete") {
|
7 |
+
CUE({
|
8 |
+
'retailId': <?php echo $this->getRetailerId(); ?>,
|
9 |
+
'apiKey': '<?php echo $this->getApiKey(); ?>'
|
10 |
+
});
|
11 |
+
}
|
12 |
+
}
|
13 |
+
var scriptElement = document.createElement('script');
|
14 |
+
scriptElement.setAttribute('src', "https://stream.cueconnect.com/js/cue-seed.js");
|
15 |
+
scriptElement.setAttribute('onload', 'executeOnLoad.apply(this)');
|
16 |
+
scriptElement.setAttribute('onreadystatechange', 'executeOnLoad.apply(this)');
|
17 |
+
document.body.appendChild(scriptElement);
|
18 |
+
</script>
|
19 |
+
<?php endif; ?>
|
app/design/frontend/rwd/default/template/cueconnect/share.phtml
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
<?php if ($this->isEnabled() && $this->isObEnabled()): ?>
|
2 |
+
<div class="cue-onebutton" style="margin-right: 15px; float: left;" data-imisku="<?php echo $this->getSku(); ?>"></div>
|
3 |
+
<?php endif; ?>
|
app/etc/modules/CueConnect_Cue.xml
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<modules>
|
4 |
+
<CueConnect_Cue>
|
5 |
+
<active>true</active>
|
6 |
+
<codePool>community</codePool>
|
7 |
+
</CueConnect_Cue>
|
8 |
+
</modules>
|
9 |
+
</config>
|
package.xml
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<package>
|
3 |
+
<name>Cue</name>
|
4 |
+
<version>3.0.5</version>
|
5 |
+
<stability>stable</stability>
|
6 |
+
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
|
7 |
+
<channel>community</channel>
|
8 |
+
<extends/>
|
9 |
+
<summary>Meet Cue, your customers’ personal shopping assistant that feeds you actionable data.</summary>
|
10 |
+
<description>Cue is the only sharing utility that lets shoppers save and collaborate around their interests in your products while also establishing a connection to your site. Use the data you own from these connections to dynamically retarget customers with relevant content on their next visit.
|
11 |
+

|
12 |
+
Deliver a personalized shopping experience using Cue’s powerful features and see immediate improvement on your bottom line.</description>
|
13 |
+
<notes>Added manual settings for Share/Favorite and My Cue links.</notes>
|
14 |
+
<authors><author><name>Cue Connect</name><user>hrais</user><email>hrais@cueconnect.com</email></author></authors>
|
15 |
+
<date>2015-09-15</date>
|
16 |
+
<time>15:13:22</time>
|
17 |
+
<contents><target name="magecommunity"><dir name="CueConnect"><dir name="Cue"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><file name="Product.php" hash="da20e73d9d6c46f8e9b8f2e0b130b69a"/></dir><file name="Index.php" hash="0c40f5f733dd6ecd2dd5a0453d1df14b"/><file name="Progress.php" hash="356b7156014fc29304e612935505adfa"/></dir><file name="Collection.php" hash="785e2700ac012d03bdc8494012323ca3"/><file name="Favorite.php" hash="f3f1dab782d51d5d401edc9f152d167d"/><file name="Js.php" hash="32b558970a4c2be4cecc04cb38f7cd78"/><file name="Share.php" hash="4c1779b21dc9e4c35a3a5cb9a422e22b"/></dir><dir name="Helper"><file name="Data.php" hash="7a524bfb1fb35b7a9fba6089467c69a5"/></dir><dir name="Model"><file name="CueConnect.php" hash="3900cf9b6fca4b6b2089fac95d34e9a4"/><file name="Demand.php" hash="e1d627c3207a364c861faf8decbcd7cc"/><dir name="Mysql4"><dir name="Demand"><file name="Collection.php" hash="4bd64ac5500aacdd861c05161bfdea60"/></dir><file name="Demand.php" hash="6b3b0d54f7d15fb55d47773ea96690d8"/></dir><file name="Observer.php" hash="47532c4edc8fa72b9a8d51b6ebb64006"/><file name="debug.export.log" hash="30e133313656ee5a7f8d9c835975b481"/><file name=".Inmarkit.php.swp" hash="1e57142b5a69936aab17cbc6fabdd16a"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="SyncController.php" hash="13dbf4f38f342bf2c93f0bd752332a3c"/></dir></dir><dir name="etc"><file name="config.xml" hash="828a7a2e26596362f9cd0165b5527db0"/><file name="system.xml" hash="538634c4fcd9b545f0d77e2295e4ba5a"/></dir><dir name="sql"><dir name="cueconnect_setup"><file name="mysql4-install-1.0.0.php" hash="04d0fbfc4e3cf302d2672521200f13e9"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="cueconnect.xml" hash="e36067cf34af305d52016ff641667619"/></dir><dir name="template"><dir name="cueconnect"><file name="index.phtml" hash="322ca20bb02790dbfcbe18e8363a9b4b"/><file name="index.phtml~" hash="935b13a4f5a8a7dbdbfdfc8b15cba1c0"/><file name="progress.phtml" hash="9afc5e3ab6950ff506e23be9b4cef5ea"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="rwd"><dir name="default"><dir name="layout"><file name="cueconnect.xml" hash="ad58b468c90f3e76a79ec869c9117cbc"/></dir><dir name="template"><dir name="cueconnect"><file name="collection.phtml" hash="64974a6c106a8c564a40b3a39212cddb"/><file name="favorite.phtml" hash="61d1cebdf01a018db58870adf24b1bff"/><file name="js.phtml" hash="40ee8549a42705a31383671589754343"/><file name="share.phtml" hash="e50e6915c50251e412329bee085b2043"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="CueConnect_Cue.xml" hash="6bd6cf8a7f9e647dc5729e8b0a77cfa1"/></dir></target></contents>
|
18 |
+
<compatible/>
|
19 |
+
<dependencies><required><php><min>5.0.1</min><max>5.0.6</max></php><extension><name>Core</name><min/><max/></extension></required></dependencies>
|
20 |
+
</package>
|