Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- require_once 'htmlpurifier-4.6.0/library/HTMLPurifier.auto.php';
- require_once 'simplehtmldom-1.5/simple_html_dom.php';
- ini_set('xdebug.var_display_max_depth', 12);
- ini_set('xdebug.var_display_max_children', 256);
- ini_set('xdebug.var_display_max_data', 1024);
- //echo password_hash('liepos10', PASSWORD_DEFAULT, array('cost' => 10));
- $handle = fopen('input.txt','r');
- $data = fread($handle,1024*1024*1);
- fclose($handle);
- $data = unserialize($data);
- $config = HTMLPurifier_Config::createDefault();
- $purifier = new HTMLPurifier($config);
- foreach ($data[0] as $key => $value) {
- $valueArr = explode(" ",$value['title']);
- krsort($valueArr);
- $gallery_category = strtolower(array_pop($valueArr));
- if($value['sort_order']>0){
- foreach ($value['values'] as $k => $title) {
- $htmlTitle = '';
- $htmlElement = str_get_html($purifier->purify($title['title']));
- $img = $htmlElement->find('img',0);
- $pathArr = explode("/",$img->src);
- $filename = array_pop($pathArr); //gets last array item which in this case is filename
- $dashed_name = preg_replace('/\\.[^.\\s]{3,4}$/', '', $filename); //removes any file extension from filename
- if(strpos($dashed_name,'patent') !== false){ //checks if filename contains word "patent"
- $htmlElement->root->children[0]->{'rel'} = "lightbox";
- $htmlElement->root->children[0]->children[1]->setAttribute('style','display:none');
- $htmlTitle = $htmlElement->save();
- } elseif(preg_match('~[0-9]~',$dashed_name)){ //Checks if filename contains digits, if it does it means its a textile
- $titleName = ucfirst(str_replace("-"," ",$dashed_name));
- if(preg_match("/(?<=\\d)[^\\d\\s]+/", $dashed_name, $matched_word)) {
- $titleName = str_replace($matched_word,"",$titleName);
- }
- $htmlElement->root->children[0]->{'rel'} = "lightbox";
- $htmlElement->root->children[0]->children[0]->{'title'} = $titleName." Textile";
- $htmlElement->root->children[0]->children[0]->{'alt'} = $titleName;
- $htmlElement->root->children[0]->children[1]->innertext = $titleName." Textile";
- $htmlElement->root->children[0]->children[1]->setAttribute('style','display:none');
- $htmlElement->root->children[0]->{'title'} = $titleName." Textile";
- $htmlTitle = $htmlElement->save();
- } else {
- $wordAr = array();
- foreach(explode("-",$dashed_name) as $word) $wordAr[] = ucfirst($word);
- $titleName = implode(" ",$wordAr);
- if(preg_match("/(?<=\\d)[^\\d\\s]+/", $dashed_name, $matched_word)) {
- $titleName = ucwords(str_replace($matched_word,"",$titleName)." ".$matched_word[0]);
- }
- $htmlElement->root->children[0]->{'rel'} = "lightbox";
- $htmlElement->root->children[0]->children[0]->{'title'} = $titleName." Leather";
- $htmlElement->root->children[0]->children[0]->{'alt'} = $titleName;
- $htmlElement->root->children[0]->children[1]->innertext = $titleName." Eco Leather";
- $htmlElement->root->children[0]->children[1]->setAttribute('style','display:none');
- $htmlElement->root->children[0]->{'title'} = $titleName."Leather ";
- $htmlTitle = $htmlElement->save();
- }
- $title['title'] = $htmlTitle;
- $value['values'][$k] = $title;
- }
- usort($value['values'], function($a, $b) {
- return $a['sort_order'] - $b['sort_order'];
- });
- $data[0][$key] = $value;
- }
- }
- usort($data[0], function($a, $b) {
- return $a['sort_order'] - $b['sort_order'];
- });
- var_dump($data[0]);
- $handle = fopen('LatestSerialize.txt', 'w+x');
- fwrite($handle, serialize($data));
- fclose($handle);
- exit;
- the var_dump of results:
- array (size=3)
- 0 =>
- array (size=10)
- 'is_delete' => string '' (length=0)
- 'previous_type' => string 'drop_down' (length=9)
- 'previous_group' => string 'select' (length=6)
- 'id' => string '3' (length=1)
- 'option_id' => string '3' (length=1)
- 'title' => string 'Size' (length=4)
- 'type' => string 'drop_down' (length=9)
- 'is_require' => string '1' (length=1)
- 'sort_order' => string '0' (length=1)
- 'values' =>
- array (size=2)
- 0 =>
- array (size=7)
- 'option_type_id' => string '0' (length=1)
- 'is_delete' => string '' (length=0)
- 'title' => string '1600 x 2000mm' (length=13)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string '1600mm' (length=6)
- 'sort_order' => string '0' (length=1)
- 1 =>
- array (size=7)
- 'option_type_id' => string '1' (length=1)
- 'is_delete' => string '' (length=0)
- 'title' => string '1800 x 2000mm' (length=13)
- 'price' => string '1000.00' (length=7)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string '1800mm' (length=6)
- 'sort_order' => string '1' (length=1)
- 1 =>
- array (size=10)
- 'is_delete' => string '' (length=0)
- 'previous_type' => string 'radio' (length=5)
- 'previous_group' => string 'select' (length=6)
- 'id' => string '1' (length=1)
- 'option_id' => string '1' (length=1)
- 'title' => string 'Main Colour' (length=11)
- 'type' => string 'radio' (length=5)
- 'is_require' => string '1' (length=1)
- 'sort_order' => string '1' (length=1)
- 'values' =>
- array (size=51)
- 0 =>
- array (size=7)
- 'option_type_id' => string '3' (length=1)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/patent-black.png" title="Patent Black" rel="lightbox"><img src="/media/wysiwyg/swatches/min/patent-black.png" alt="Patent Black" title="Patent Black" /><span style="display:none">Patent Black</span></a>' (length=235)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'patentblack-main' (length=16)
- 'sort_order' => string '0' (length=1)
- 1 =>
- array (size=7)
- 'option_type_id' => string '50' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/patent-white.png" title="Patent White" rel="lightbox"><img src="/media/wysiwyg/swatches/min/patent-white.png" alt="Patent White" title="Patent White" /><span style="display:none">Patent White</span></a>' (length=235)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'patent-white-main' (length=17)
- 'sort_order' => string '1' (length=1)
- 2 =>
- array (size=7)
- 'option_type_id' => string '7' (length=1)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/black.png" title="BlackLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/black.png" alt="Black" title="Black Leather" /><span style="display:none">Black Eco Leather</span></a>' (length=221)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'black-main' (length=10)
- 'sort_order' => string '101' (length=3)
- 3 =>
- array (size=7)
- 'option_type_id' => string '18' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/grey.png" title="GreyLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/grey.png" alt="Grey" title="Grey Leather" /><span style="display:none">Grey Eco Leather</span></a>' (length=215)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'grey-main' (length=9)
- 'sort_order' => string '115' (length=3)
- 4 =>
- array (size=7)
- 'option_type_id' => string '21' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/light-grey.png" title="Light GreyLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/light-grey.png" alt="Light Grey" title="Light Grey Leather" /><span style="display:none">Light Grey Eco Leather</span></a>' (length=251)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'lightgrey-main' (length=14)
- 'sort_order' => string '120' (length=3)
- 5 =>
- array (size=7)
- 'option_type_id' => string '13' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/dark-blue.png" title="Dark BlueLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/dark-blue.png" alt="Dark Blue" title="Dark Blue Leather" /><span style="display:none">Dark Blue Eco Leather</span></a>' (length=245)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'darkblue-main' (length=13)
- 'sort_order' => string '130' (length=3)
- 6 =>
- array (size=7)
- 'option_type_id' => string '32' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/ocean-blue.png" title="Ocean BlueLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/ocean-blue.png" alt="Ocean Blue" title="Ocean Blue Leather" /><span style="display:none">Ocean Blue Eco Leather</span></a>' (length=251)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'oceanblue-main' (length=14)
- 'sort_order' => string '140' (length=3)
- 7 =>
- array (size=7)
- 'option_type_id' => string '44' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/viola.png" title="ViolaLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/viola.png" alt="Viola" title="Viola Leather" /><span style="display:none">Viola Eco Leather</span></a>' (length=221)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'viola-main' (length=10)
- 'sort_order' => string '150' (length=3)
- 8 =>
- array (size=7)
- 'option_type_id' => string '30' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/navy.png" title="NavyLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/navy.png" alt="Navy" title="Navy Leather" /><span style="display:none">Navy Eco Leather</span></a>' (length=215)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'navy-main' (length=9)
- 'sort_order' => string '160' (length=3)
- 9 =>
- array (size=7)
- 'option_type_id' => string '43' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/turkis.png" title="TurkisLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/turkis.png" alt="Turkis" title="Turkis Leather" /><span style="display:none">Turkis Eco Leather</span></a>' (length=227)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'turkis-main' (length=11)
- 'sort_order' => string '165' (length=3)
- 10 =>
- array (size=7)
- 'option_type_id' => string '17' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/forest-green.png" title="Forest GreenLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/forest-green.png" alt="Forest Green" title="Forest Green Leather" /><span style="display:none">Forest Green Eco Leather</span></a>' (length=263)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'forestgreen-main' (length=16)
- 'sort_order' => string '166' (length=3)
- 11 =>
- array (size=7)
- 'option_type_id' => string '48' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/army.png" title="ArmyLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/army.png" alt="Army" title="Army Leather" /><span style="display:none">Army Eco Leather</span></a>' (length=215)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'army-main' (length=9)
- 'sort_order' => string '167' (length=3)
- 12 =>
- array (size=7)
- 'option_type_id' => string '38' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/spring.png" title="SpringLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/spring.png" alt="Spring" title="Spring Leather" /><span style="display:none">Spring Eco Leather</span></a>' (length=227)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'spring-main' (length=11)
- 'sort_order' => string '168' (length=3)
- 13 =>
- array (size=7)
- 'option_type_id' => string '22' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/lime.png" title="LimeLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/lime.png" alt="Lime" title="Lime Leather" /><span style="display:none">Lime Eco Leather</span></a>' (length=215)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'lime-main' (length=9)
- 'sort_order' => string '169' (length=3)
- 14 =>
- array (size=7)
- 'option_type_id' => string '8' (length=1)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/brandy.png" title="BrandyLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/brandy.png" alt="Brandy" title="Brandy Leather" /><span style="display:none">Brandy Eco Leather</span></a>' (length=227)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'brandy-main' (length=11)
- 'sort_order' => string '171' (length=3)
- 15 =>
- array (size=7)
- 'option_type_id' => string '11' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/chestnut.png" title="ChestnutLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/chestnut.png" alt="Chestnut" title="Chestnut Leather" /><span style="display:none">Chestnut Eco Leather</span></a>' (length=239)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'chestnut-main' (length=13)
- 'sort_order' => string '172' (length=3)
- 16 =>
- array (size=7)
- 'option_type_id' => string '9' (length=1)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/calvados.png" title="CalvadosLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/calvados.png" alt="Calvados" title="Calvados Leather" /><span style="display:none">Calvados Eco Leather</span></a>' (length=239)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'calvados-main' (length=13)
- 'sort_order' => string '173' (length=3)
- 17 =>
- array (size=7)
- 'option_type_id' => string '12' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/cognac.png" title="CognacLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/cognac.png" alt="Cognac" title="Cognac Leather" /><span style="display:none">Cognac Eco Leather</span></a>' (length=227)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'cognac-main' (length=11)
- 'sort_order' => string '174' (length=3)
- 18 =>
- array (size=7)
- 'option_type_id' => string '19' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/khaki.png" title="KhakiLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/khaki.png" alt="Khaki" title="Khaki Leather" /><span style="display:none">Khaki Eco Leather</span></a>' (length=221)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'khaki-main' (length=10)
- 'sort_order' => string '178' (length=3)
- 19 =>
- array (size=7)
- 'option_type_id' => string '39' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/stone.png" title="StoneLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/stone.png" alt="Stone" title="Stone Leather" /><span style="display:none">Stone Eco Leather</span></a>' (length=221)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'stone-main' (length=10)
- 'sort_order' => string '179' (length=3)
- 20 =>
- array (size=7)
- 'option_type_id' => string '29' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/mustard.png" title="MustardLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/mustard.png" alt="Mustard" title="Mustard Leather" /><span style="display:none">Mustard Eco Leather</span></a>' (length=233)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'mustard-main' (length=12)
- 'sort_order' => string '180' (length=3)
- 21 =>
- array (size=7)
- 'option_type_id' => string '41' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/toffee.png" title="ToffeeLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/toffee.png" alt="Toffee" title="Toffee Leather" /><span style="display:none">Toffee Eco Leather</span></a>' (length=227)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'toffee-main' (length=11)
- 'sort_order' => string '192' (length=3)
- 22 =>
- array (size=7)
- 'option_type_id' => string '45' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/warm-beige.png" title="Warm BeigeLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/warm-beige.png" alt="Warm Beige" title="Warm Beige Leather" /><span style="display:none">Warm Beige Eco Leather</span></a>' (length=251)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'warm beige-main' (length=15)
- 'sort_order' => string '193' (length=3)
- 23 =>
- array (size=7)
- 'option_type_id' => string '37' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/sand.png" title="SandLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/sand.png" alt="Sand" title="Sand Leather" /><span style="display:none">Sand Eco Leather</span></a>' (length=215)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'sand-main' (length=9)
- 'sort_order' => string '194' (length=3)
- 24 =>
- array (size=7)
- 'option_type_id' => string '5' (length=1)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/beige.png" title="BeigeLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/beige.png" alt="Beige" title="Beige Leather" /><span style="display:none">Beige Eco Leather</span></a>' (length=221)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'beige-main' (length=10)
- 'sort_order' => string '195' (length=3)
- 25 =>
- array (size=7)
- 'option_type_id' => string '47' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/yellow.png" title="YellowLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/yellow.png" alt="Yellow" title="Yellow Leather" /><span style="display:none">Yellow Eco Leather</span></a>' (length=227)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'yellow-main' (length=11)
- 'sort_order' => string '200' (length=3)
- 26 =>
- array (size=7)
- 'option_type_id' => string '34' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/pearl.png" title="PearlLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/pearl.png" alt="Pearl" title="Pearl Leather" /><span style="display:none">Pearl Eco Leather</span></a>' (length=221)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'pearl-main' (length=10)
- 'sort_order' => string '201' (length=3)
- 27 =>
- array (size=7)
- 'option_type_id' => string '46' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/white.png" title="WhiteLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/white.png" alt="White" title="White Leather" /><span style="display:none">White Eco Leather</span></a>' (length=221)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'white-main' (length=10)
- 'sort_order' => string '202' (length=3)
- 28 =>
- array (size=7)
- 'option_type_id' => string '14' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/dark-brown.png" title="Dark BrownLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/dark-brown.png" alt="Dark Brown" title="Dark Brown Leather" /><span style="display:none">Dark Brown Eco Leather</span></a>' (length=251)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'darkbrown-main' (length=14)
- 'sort_order' => string '205' (length=3)
- 29 =>
- array (size=7)
- 'option_type_id' => string '10' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/cappuccino.png" title="CappuccinoLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/cappuccino.png" alt="Cappuccino" title="Cappuccino Leather" /><span style="display:none">Cappuccino Eco Leather</span></a>' (length=251)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'cappuccino-main' (length=15)
- 'sort_order' => string '206' (length=3)
- 30 =>
- array (size=7)
- 'option_type_id' => string '2' (length=1)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/mocca.png" title="MoccaLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/mocca.png" alt="Mocca" title="Mocca Leather" /><span style="display:none">Mocca Eco Leather</span></a>' (length=221)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'mocca-main' (length=10)
- 'sort_order' => string '208' (length=3)
- 31 =>
- array (size=7)
- 'option_type_id' => string '15' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/english-red.png" title="English RedLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/english-red.png" alt="English Red" title="English Red Leather" /><span style="display:none">English Red Eco Leather</span></a>' (length=257)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'englishred-main' (length=15)
- 'sort_order' => string '210' (length=3)
- 32 =>
- array (size=7)
- 'option_type_id' => string '1' (length=1)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/antique-red.png" title="Antique RedLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/antique-red.png" alt="Antique Red" title="Antique Red Leather" /><span style="display:none">Antique Red Eco Leather</span></a>' (length=257)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'antiquered-main' (length=15)
- 'sort_order' => string '215' (length=3)
- 33 =>
- array (size=7)
- 'option_type_id' => string '36' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/red.png" title="RedLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/red.png" alt="Red" title="Red Leather" /><span style="display:none">Red Eco Leather</span></a>' (length=209)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'red-main' (length=8)
- 'sort_order' => string '216' (length=3)
- 34 =>
- array (size=7)
- 'option_type_id' => string '16' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/ferrari-red.png" title="Ferrari RedLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/ferrari-red.png" alt="Ferrari Red" title="Ferrari Red Leather" /><span style="display:none">Ferrari Red Eco Leather</span></a>' (length=257)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'ferrarired-main' (length=15)
- 'sort_order' => string '217' (length=3)
- 35 =>
- array (size=7)
- 'option_type_id' => string '35' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/pink.png" title="PinkLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/pink.png" alt="Pink" title="Pink Leather" /><span style="display:none">Pink Eco Leather</span></a>' (length=215)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'pink-main' (length=9)
- 'sort_order' => string '218' (length=3)
- 36 =>
- array (size=7)
- 'option_type_id' => string '26' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/mandarin.png" title="MandarinLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/mandarin.png" alt="Mandarin" title="Mandarin Leather" /><span style="display:none">Mandarin Eco Leather</span></a>' (length=239)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'mandarin-main' (length=13)
- 'sort_order' => string '220' (length=3)
- 37 =>
- array (size=7)
- 'option_type_id' => string '33' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/peach.png" title="PeachLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/peach.png" alt="Peach" title="Peach Leather" /><span style="display:none">Peach Eco Leather</span></a>' (length=221)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'peach-main' (length=10)
- 'sort_order' => string '230' (length=3)
- 38 =>
- array (size=7)
- 'option_type_id' => string '40' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/sun.png" title="SunLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/sun.png" alt="Sun" title="Sun Leather" /><span style="display:none">Sun Eco Leather</span></a>' (length=209)
- 'price' => string '10.00' (length=5)
- 'price_type' => string 'percent' (length=7)
- 'sku' => string 'sun-main' (length=8)
- 'sort_order' => string '270' (length=3)
- 39 =>
- array (size=7)
- 'option_type_id' => string '25' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/luna-kor-5913.png" title="Luna kor 5913 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/luna-kor-5913.png" alt="Luna kor 5913" title="Luna kor 5913 Textile" /><span style="display:none">Luna kor 5913 Textile</span></a>' (length=265)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'lunakor 5913-main' (length=17)
- 'sort_order' => string '1000' (length=4)
- 40 =>
- array (size=7)
- 'option_type_id' => string '6' (length=1)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/bergamo-8132.png" title="Bergamo 8132 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/bergamo-8132.png" alt="Bergamo 8132" title="Bergamo 8132 Textile" /><span style="display:none">Bergamo 8132 Textile</span></a>' (length=259)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'bergamo 8132-main' (length=17)
- 'sort_order' => string '1008' (length=4)
- 41 =>
- array (size=7)
- 'option_type_id' => string '20' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/kredo-2222.png" title="Kredo 2222 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/kredo-2222.png" alt="Kredo 2222" title="Kredo 2222 Textile" /><span style="display:none">Kredo 2222 Textile</span></a>' (length=247)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'kredo 2222-main' (length=15)
- 'sort_order' => string '1020' (length=4)
- 42 =>
- array (size=7)
- 'option_type_id' => string '31' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/nord-8540.png" title="Nord 8540 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/nord-8540.png" alt="Nord 8540" title="Nord 8540 Textile" /><span style="display:none">Nord 8540 Textile</span></a>' (length=241)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'nord8540-main' (length=13)
- 'sort_order' => string '1040' (length=4)
- 43 =>
- array (size=7)
- 'option_type_id' => string '49' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/arabeska-6003.png" title="Arabeska 6003 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/arabeska-6003.png" alt="Arabeska 6003" title="Arabeska 6003 Textile" /><span style="display:none">Arabeska 6003 Textile</span></a>' (length=265)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'arabeska 6003-main' (length=18)
- 'sort_order' => string '1060' (length=4)
- 44 =>
- array (size=7)
- 'option_type_id' => string '28' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/marvilla-2020braz.png" title="Marvilla 2020 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/marvilla-2020braz.png" alt="Marvilla 2020" title="Marvilla 2020 Textile" /><span style="display:none">Marvilla 2020 Textile</span></a>' (length=273)
- 'price' => string '100.00' (length=6)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'marvilla2020braz-main' (length=21)
- 'sort_order' => string '1080' (length=4)
- 45 =>
- array (size=7)
- 'option_type_id' => string '0' (length=1)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/alpina-7210.png" title="Alpina 7210 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/alpina-7210.png" alt="Alpina 7210" title="Alpina 7210 Textile" /><span style="display:none">Alpina 7210 Textile</span></a>' (length=253)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'alpina7210-main' (length=15)
- 'sort_order' => string '1200' (length=4)
- 46 =>
- array (size=7)
- 'option_type_id' => string '27' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/manerba-6613.png" title="Manerba 6613 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/manerba-6613.png" alt="Manerba 6613" title="Manerba 6613 Textile" /><span style="display:none">Manerba 6613 Textile</span></a>' (length=259)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'manerba6613-main' (length=16)
- 'sort_order' => string '1220' (length=4)
- 47 =>
- array (size=7)
- 'option_type_id' => string '24' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/logan-7820.png" title="Logan 7820 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/logan-7820.png" alt="Logan 7820" title="Logan 7820 Textile" /><span style="display:none">Logan 7820 Textile</span></a>' (length=247)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'logan7820-main' (length=14)
- 'sort_order' => string '1240' (length=4)
- 48 =>
- array (size=7)
- 'option_type_id' => string '42' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/torino-6941.png" title="Torino 6941 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/torino-6941.png" alt="Torino 6941" title="Torino 6941 Textile" /><span style="display:none">Torino 6941 Textile</span></a>' (length=253)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'torino 6941-main' (length=16)
- 'sort_order' => string '1260' (length=4)
- 49 =>
- array (size=7)
- 'option_type_id' => string '23' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/loca-17.png" title="Loca 17 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/loca-17.png" alt="Loca 17" title="Loca 17 Textile" /><span style="display:none">Loca 17 Textile</span></a>' (length=229)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'loca17-main' (length=11)
- 'sort_order' => string '1280' (length=4)
- 50 =>
- array (size=7)
- 'option_type_id' => string '4' (length=1)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/artika-7003.png" title="Artika 7003 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/artika-7003.png" alt="Artika 7003" title="Artika 7003 Textile" /><span style="display:none">Artika 7003 Textile</span></a>' (length=253)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'artika7003-main' (length=15)
- 'sort_order' => string '1300' (length=4)
- 2 =>
- array (size=10)
- 'is_delete' => string '' (length=0)
- 'previous_type' => string 'radio' (length=5)
- 'previous_group' => string 'select' (length=6)
- 'id' => string '2' (length=1)
- 'option_id' => string '2' (length=1)
- 'title' => string 'Side Colour' (length=11)
- 'type' => string 'radio' (length=5)
- 'is_require' => string '1' (length=1)
- 'sort_order' => string '2' (length=1)
- 'values' =>
- array (size=51)
- 0 =>
- array (size=7)
- 'option_type_id' => string '49' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/patent-black.png" title="Patent Black" rel="lightbox"><img src="/media/wysiwyg/swatches/min/patent-black.png" alt="Patent Black" title="Patent Black" /><span style="display:none">Patent Black</span></a>' (length=235)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'patent black-side' (length=17)
- 'sort_order' => string '0' (length=1)
- 1 =>
- array (size=7)
- 'option_type_id' => string '48' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/patent-white.png" title="Patent White" rel="lightbox"><img src="/media/wysiwyg/swatches/min/patent-white.png" alt="Patent White" title="Patent White" /><span style="display:none">Patent White</span></a>' (length=235)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'patent white-side' (length=17)
- 'sort_order' => string '1' (length=1)
- 2 =>
- array (size=7)
- 'option_type_id' => string '7' (length=1)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/black.png" title="BlackLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/black.png" alt="Black" title="Black Leather" /><span style="display:none">Black Eco Leather</span></a>' (length=221)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'black-side' (length=10)
- 'sort_order' => string '101' (length=3)
- 3 =>
- array (size=7)
- 'option_type_id' => string '18' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/grey.png" title="GreyLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/grey.png" alt="Grey" title="Grey Leather" /><span style="display:none">Grey Eco Leather</span></a>' (length=215)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'grey-side' (length=9)
- 'sort_order' => string '110' (length=3)
- 4 =>
- array (size=7)
- 'option_type_id' => string '21' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/light-grey.png" title="Light GreyLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/light-grey.png" alt="Light Grey" title="Light Grey Leather" /><span style="display:none">Light Grey Eco Leather</span></a>' (length=251)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'lightgrey-side' (length=14)
- 'sort_order' => string '120' (length=3)
- 5 =>
- array (size=7)
- 'option_type_id' => string '13' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/dark-blue.png" title="Dark BlueLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/dark-blue.png" alt="Dark Blue" title="Dark Blue Leather" /><span style="display:none">Dark Blue Eco Leather</span></a>' (length=245)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'darkblue-side' (length=13)
- 'sort_order' => string '130' (length=3)
- 6 =>
- array (size=7)
- 'option_type_id' => string '32' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/ocean-blue.png" title="Ocean BlueLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/ocean-blue.png" alt="Ocean Blue" title="Ocean Blue Leather" /><span style="display:none">Ocean Blue Eco Leather</span></a>' (length=251)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'oceanblue-side' (length=14)
- 'sort_order' => string '140' (length=3)
- 7 =>
- array (size=7)
- 'option_type_id' => string '44' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/viola.png" title="ViolaLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/viola.png" alt="Viola" title="Viola Leather" /><span style="display:none">Viola Eco Leather</span></a>' (length=221)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'viola-side' (length=10)
- 'sort_order' => string '150' (length=3)
- 8 =>
- array (size=7)
- 'option_type_id' => string '30' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/navy.png" title="NavyLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/navy.png" alt="Navy" title="Navy Leather" /><span style="display:none">Navy Eco Leather</span></a>' (length=215)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'navy-side' (length=9)
- 'sort_order' => string '160' (length=3)
- 9 =>
- array (size=7)
- 'option_type_id' => string '43' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/turkis.png" title="TurkisLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/turkis.png" alt="Turkis" title="Turkis Leather" /><span style="display:none">Turkis Eco Leather</span></a>' (length=227)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'turkis-side' (length=11)
- 'sort_order' => string '165' (length=3)
- 10 =>
- array (size=7)
- 'option_type_id' => string '17' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/forest-green.png" title="Forest GreenLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/forest-green.png" alt="Forest Green" title="Forest Green Leather" /><span style="display:none">Forest Green Eco Leather</span></a>' (length=263)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'forestgreen-side' (length=16)
- 'sort_order' => string '166' (length=3)
- 11 =>
- array (size=7)
- 'option_type_id' => string '50' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/army.png" title="ArmyLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/army.png" alt="Army" title="Army Leather" /><span style="display:none">Army Eco Leather</span></a>' (length=215)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'army-side' (length=9)
- 'sort_order' => string '167' (length=3)
- 12 =>
- array (size=7)
- 'option_type_id' => string '38' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/spring.png" title="SpringLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/spring.png" alt="Spring" title="Spring Leather" /><span style="display:none">Spring Eco Leather</span></a>' (length=227)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'spring-side' (length=11)
- 'sort_order' => string '168' (length=3)
- 13 =>
- array (size=7)
- 'option_type_id' => string '22' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/lime.png" title="LimeLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/lime.png" alt="Lime" title="Lime Leather" /><span style="display:none">Lime Eco Leather</span></a>' (length=215)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'lime-side' (length=9)
- 'sort_order' => string '169' (length=3)
- 14 =>
- array (size=7)
- 'option_type_id' => string '8' (length=1)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/brandy.png" title="BrandyLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/brandy.png" alt="Brandy" title="Brandy Leather" /><span style="display:none">Brandy Eco Leather</span></a>' (length=227)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'brandy-side' (length=11)
- 'sort_order' => string '171' (length=3)
- 15 =>
- array (size=7)
- 'option_type_id' => string '11' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/chestnut.png" title="ChestnutLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/chestnut.png" alt="Chestnut" title="Chestnut Leather" /><span style="display:none">Chestnut Eco Leather</span></a>' (length=239)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'chestnut-side' (length=13)
- 'sort_order' => string '172' (length=3)
- 16 =>
- array (size=7)
- 'option_type_id' => string '9' (length=1)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/calvados.png" title="CalvadosLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/calvados.png" alt="Calvados" title="Calvados Leather" /><span style="display:none">Calvados Eco Leather</span></a>' (length=239)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'calvados-side' (length=13)
- 'sort_order' => string '173' (length=3)
- 17 =>
- array (size=7)
- 'option_type_id' => string '12' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/cognac.png" title="CognacLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/cognac.png" alt="Cognac" title="Cognac Leather" /><span style="display:none">Cognac Eco Leather</span></a>' (length=227)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'cognac-side' (length=11)
- 'sort_order' => string '174' (length=3)
- 18 =>
- array (size=7)
- 'option_type_id' => string '19' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/khaki.png" title="KhakiLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/khaki.png" alt="Khaki" title="Khaki Leather" /><span style="display:none">Khaki Eco Leather</span></a>' (length=221)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'khaki-side' (length=10)
- 'sort_order' => string '178' (length=3)
- 19 =>
- array (size=7)
- 'option_type_id' => string '39' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/stone.png" title="StoneLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/stone.png" alt="Stone" title="Stone Leather" /><span style="display:none">Stone Eco Leather</span></a>' (length=221)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'stone-side' (length=10)
- 'sort_order' => string '179' (length=3)
- 20 =>
- array (size=7)
- 'option_type_id' => string '29' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/mustard.png" title="MustardLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/mustard.png" alt="Mustard" title="Mustard Leather" /><span style="display:none">Mustard Eco Leather</span></a>' (length=233)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'mustard-side' (length=12)
- 'sort_order' => string '180' (length=3)
- 21 =>
- array (size=7)
- 'option_type_id' => string '41' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/toffee.png" title="ToffeeLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/toffee.png" alt="Toffee" title="Toffee Leather" /><span style="display:none">Toffee Eco Leather</span></a>' (length=227)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'toffee-side' (length=11)
- 'sort_order' => string '192' (length=3)
- 22 =>
- array (size=7)
- 'option_type_id' => string '45' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/warm-beige.png" title="Warm BeigeLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/warm-beige.png" alt="Warm Beige" title="Warm Beige Leather" /><span style="display:none">Warm Beige Eco Leather</span></a>' (length=251)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'warm beige-side' (length=15)
- 'sort_order' => string '193' (length=3)
- 23 =>
- array (size=7)
- 'option_type_id' => string '37' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/sand.png" title="SandLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/sand.png" alt="Sand" title="Sand Leather" /><span style="display:none">Sand Eco Leather</span></a>' (length=215)
- 'price' => string '100.00' (length=6)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'sand-side' (length=9)
- 'sort_order' => string '194' (length=3)
- 24 =>
- array (size=7)
- 'option_type_id' => string '5' (length=1)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/beige.png" title="BeigeLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/beige.png" alt="Beige" title="Beige Leather" /><span style="display:none">Beige Eco Leather</span></a>' (length=221)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'beige-side' (length=10)
- 'sort_order' => string '195' (length=3)
- 25 =>
- array (size=7)
- 'option_type_id' => string '47' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/yellow.png" title="YellowLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/yellow.png" alt="Yellow" title="Yellow Leather" /><span style="display:none">Yellow Eco Leather</span></a>' (length=227)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'yellow-side' (length=11)
- 'sort_order' => string '200' (length=3)
- 26 =>
- array (size=7)
- 'option_type_id' => string '34' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/pearl.png" title="PearlLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/pearl.png" alt="Pearl" title="Pearl Leather" /><span style="display:none">Pearl Eco Leather</span></a>' (length=221)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'pearl-side' (length=10)
- 'sort_order' => string '201' (length=3)
- 27 =>
- array (size=7)
- 'option_type_id' => string '46' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/white.png" title="WhiteLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/white.png" alt="White" title="White Leather" /><span style="display:none">White Eco Leather</span></a>' (length=221)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'white-side' (length=10)
- 'sort_order' => string '202' (length=3)
- 28 =>
- array (size=7)
- 'option_type_id' => string '14' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/dark-brown.png" title="Dark BrownLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/dark-brown.png" alt="Dark Brown" title="Dark Brown Leather" /><span style="display:none">Dark Brown Eco Leather</span></a>' (length=251)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'darkbrown-side' (length=14)
- 'sort_order' => string '205' (length=3)
- 29 =>
- array (size=7)
- 'option_type_id' => string '10' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/cappuccino.png" title="CappuccinoLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/cappuccino.png" alt="Cappuccino" title="Cappuccino Leather" /><span style="display:none">Cappuccino Eco Leather</span></a>' (length=251)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'cappuccino-side' (length=15)
- 'sort_order' => string '206' (length=3)
- 30 =>
- array (size=7)
- 'option_type_id' => string '3' (length=1)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/mocca.png" title="MoccaLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/mocca.png" alt="Mocca" title="Mocca Leather" /><span style="display:none">Mocca Eco Leather</span></a>' (length=221)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'mocca-side' (length=10)
- 'sort_order' => string '208' (length=3)
- 31 =>
- array (size=7)
- 'option_type_id' => string '15' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/english-red.png" title="English RedLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/english-red.png" alt="English Red" title="English Red Leather" /><span style="display:none">English Red Eco Leather</span></a>' (length=257)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'englishred-side' (length=15)
- 'sort_order' => string '210' (length=3)
- 32 =>
- array (size=7)
- 'option_type_id' => string '1' (length=1)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/antique-red.png" title="Antique RedLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/antique-red.png" alt="Antique Red" title="Antique Red Leather" /><span style="display:none">Antique Red Eco Leather</span></a>' (length=257)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'antiquered-side' (length=15)
- 'sort_order' => string '215' (length=3)
- 33 =>
- array (size=7)
- 'option_type_id' => string '36' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/red.png" title="RedLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/red.png" alt="Red" title="Red Leather" /><span style="display:none">Red Eco Leather</span></a>' (length=209)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'red-side' (length=8)
- 'sort_order' => string '216' (length=3)
- 34 =>
- array (size=7)
- 'option_type_id' => string '16' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/ferrari-red.png" title="Ferrari RedLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/ferrari-red.png" alt="Ferrari Red" title="Ferrari Red Leather" /><span style="display:none">Ferrari Red Eco Leather</span></a>' (length=257)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'ferrarired-side' (length=15)
- 'sort_order' => string '217' (length=3)
- 35 =>
- array (size=7)
- 'option_type_id' => string '35' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/pink.png" title="PinkLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/pink.png" alt="Pink" title="Pink Leather" /><span style="display:none">Pink Eco Leather</span></a>' (length=215)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'pink-side' (length=9)
- 'sort_order' => string '218' (length=3)
- 36 =>
- array (size=7)
- 'option_type_id' => string '26' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/mandarin.png" title="MandarinLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/mandarin.png" alt="Mandarin" title="Mandarin Leather" /><span style="display:none">Mandarin Eco Leather</span></a>' (length=239)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'mandarin-side' (length=13)
- 'sort_order' => string '220' (length=3)
- 37 =>
- array (size=7)
- 'option_type_id' => string '33' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/peach.png" title="PeachLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/peach.png" alt="Peach" title="Peach Leather" /><span style="display:none">Peach Eco Leather</span></a>' (length=221)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'peach-side' (length=10)
- 'sort_order' => string '230' (length=3)
- 38 =>
- array (size=7)
- 'option_type_id' => string '40' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/sun.png" title="SunLeather " rel="lightbox"><img src="/media/wysiwyg/swatches/min/sun.png" alt="Sun" title="Sun Leather" /><span style="display:none">Sun Eco Leather</span></a>' (length=209)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'sun-side' (length=8)
- 'sort_order' => string '270' (length=3)
- 39 =>
- array (size=7)
- 'option_type_id' => string '25' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/luna-kor-5913.png" title="Luna kor 5913 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/luna-kor-5913.png" alt="Luna kor 5913" title="Luna kor 5913 Textile" /><span style="display:none">Luna kor 5913 Textile</span></a>' (length=265)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'lunakor5913-side' (length=16)
- 'sort_order' => string '1000' (length=4)
- 40 =>
- array (size=7)
- 'option_type_id' => string '6' (length=1)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/bergamo-8132.png" title="Bergamo 8132 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/bergamo-8132.png" alt="Bergamo 8132" title="Bergamo 8132 Textile" /><span style="display:none">Bergamo 8132 Textile</span></a>' (length=259)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'bergamo8132-side' (length=16)
- 'sort_order' => string '1008' (length=4)
- 41 =>
- array (size=7)
- 'option_type_id' => string '20' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/kredo-2222.png" title="Kredo 2222 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/kredo-2222.png" alt="Kredo 2222" title="Kredo 2222 Textile" /><span style="display:none">Kredo 2222 Textile</span></a>' (length=247)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'kredo2222-side' (length=14)
- 'sort_order' => string '1020' (length=4)
- 42 =>
- array (size=7)
- 'option_type_id' => string '31' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/nord-8540.png" title="Nord 8540 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/nord-8540.png" alt="Nord 8540" title="Nord 8540 Textile" /><span style="display:none">Nord 8540 Textile</span></a>' (length=241)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'nord8540-side' (length=13)
- 'sort_order' => string '1040' (length=4)
- 43 =>
- array (size=7)
- 'option_type_id' => string '2' (length=1)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/arabeska-6003.png" title="Arabeska 6003 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/arabeska-6003.png" alt="Arabeska 6003" title="Arabeska 6003 Textile" /><span style="display:none">Arabeska 6003 Textile</span></a>' (length=265)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'arabeska6003-side' (length=17)
- 'sort_order' => string '1060' (length=4)
- 44 =>
- array (size=7)
- 'option_type_id' => string '28' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/marvilla-2020braz.png" title="Marvilla 2020 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/marvilla-2020braz.png" alt="Marvilla 2020" title="Marvilla 2020 Textile" /><span style="display:none">Marvilla 2020 Textile</span></a>' (length=273)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'marvilla2020braz-side' (length=21)
- 'sort_order' => string '1080' (length=4)
- 45 =>
- array (size=7)
- 'option_type_id' => string '0' (length=1)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/alpina-7210.png" title="Alpina 7210 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/alpina-7210.png" alt="Alpina 7210" title="Alpina 7210 Textile" /><span style="display:none">Alpina 7210 Textile</span></a>' (length=253)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'alpina7210-side' (length=15)
- 'sort_order' => string '1200' (length=4)
- 46 =>
- array (size=7)
- 'option_type_id' => string '27' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/manerba-6613.png" title="Manerba 6613 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/manerba-6613.png" alt="Manerba 6613" title="Manerba 6613 Textile" /><span style="display:none">Manerba 6613 Textile</span></a>' (length=259)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'manerba6613-side' (length=16)
- 'sort_order' => string '1220' (length=4)
- 47 =>
- array (size=7)
- 'option_type_id' => string '24' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/logan-7820.png" title="Logan 7820 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/logan-7820.png" alt="Logan 7820" title="Logan 7820 Textile" /><span style="display:none">Logan 7820 Textile</span></a>' (length=247)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'logan7820-side' (length=14)
- 'sort_order' => string '1240' (length=4)
- 48 =>
- array (size=7)
- 'option_type_id' => string '42' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/torino-6941.png" title="Torino 6941 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/torino-6941.png" alt="Torino 6941" title="Torino 6941 Textile" /><span style="display:none">Torino 6941 Textile</span></a>' (length=253)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'torino 6941-side' (length=16)
- 'sort_order' => string '1260' (length=4)
- 49 =>
- array (size=7)
- 'option_type_id' => string '23' (length=2)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/loca-17.png" title="Loca 17 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/loca-17.png" alt="Loca 17" title="Loca 17 Textile" /><span style="display:none">Loca 17 Textile</span></a>' (length=229)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'loca17-side' (length=11)
- 'sort_order' => string '1280' (length=4)
- 50 =>
- array (size=7)
- 'option_type_id' => string '4' (length=1)
- 'is_delete' => string '' (length=0)
- 'title' => string '<a href="/media/wysiwyg/swatches/artika-7003.png" title="Artika 7003 Textile" rel="lightbox"><img src="/media/wysiwyg/swatches/min/artika-7003.png" alt="Artika 7003" title="Artika 7003 Textile" /><span style="display:none">Artika 7003 Textile</span></a>' (length=253)
- 'price' => string '0.00' (length=4)
- 'price_type' => string 'fixed' (length=5)
- 'sku' => string 'artika7003-side' (length=15)
- 'sort_order' => string '1300' (length=4)
Advertisement
Add Comment
Please, Sign In to add comment